fixed html

This commit is contained in:
2025-11-03 23:52:40 -06:00
parent 456bbafb8a
commit 97f22d2a58

View File

@@ -2,59 +2,30 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Keshav Anand's Resume</title> <title>Document</title>
<style> <style>
body { html, body {
margin: 0; margin: 0;
font-family: Arial, sans-serif; padding: 0;
background: #f8f8f8; height: 100%;
display: flex; overflow: hidden;
flex-direction: column;
height: 100vh;
} }
iframe, embed, object {
width: 100%;
height: 100%;
main {
flex: 1;
display: flex;
}
iframe {
flex: 1;
border: none; border: none;
} }
.fallback {
text-align: center;
padding: 1rem;
background: #ffcccc;
}
a.button {
display: inline-block;
margin-top: 0.5rem;
padding: 0.6rem 1.2rem;
background: #007acc;
color: white;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
}
</style> </style>
</head> </head>
<body> <body>
<!-- Try iframe first -->
<iframe src="main.pdf"></iframe>
<main> <!-- If iframe fails, fallback viewer -->
<iframe src="main.pdf" title="Resume PDF"> <object data="main.pdf" type="application/pdf"></object>
<p class="fallback">
Your browser does not support PDFs.
<a class="button" href="main.pdf" target="_blank">Download PDF</a>
</p>
</iframe>
</main>
</body> </body>
</html> </html>