Folder Changes

This commit is contained in:
2025-11-18 22:47:03 -06:00
parent f6262f4bda
commit e045fe2e3e
6 changed files with 34 additions and 63 deletions

View File

@@ -22,10 +22,10 @@
<body>
<!-- Try iframe first -->
<iframe src="main.pdf"></iframe>
<iframe src="../resume/main.pdf"></iframe>
<!-- If iframe fails, fallback viewer -->
<object data="main.pdf" type="application/pdf"></object>
<object data="../resume/main.pdf" type="application/pdf"></object>
</body>
</html>

View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
iframe, embed, object {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<!-- Try iframe first -->
<iframe src="../../transcript/FallTranscript2025.pdf"></iframe>
<!-- If iframe fails, fallback viewer -->
<object data="../../transcript/FallTranscript2025.pdf" type="application/pdf"></object>
</body>
</html>

Binary file not shown.

View File

@@ -205,7 +205,7 @@
\vspace{0.10 cm}
\begin{onecolentry}
\begin{highlights}
\item GPA: 4.73/4.0 (\href{https://resume.keshavanand.net/transcript}{View Unnoficial Transcript})
\item GPA: 4.73/4.0 (\href{https://resume.keshavanand.net/misc/transcript}{View Unnoficial Transcript})
\item Class Rank: \textbf{1/1273}
\item \textbf{Current Coursework:} AP Chemistry, American Studies (AP US History + AP English Language), Digital Electronics, AP Physics I, Calculus III (via Collin College)
\item SAT: 1550/1600 — Reading 760/800, Maths 790/800

View File

@@ -1,60 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Keshav Anand's Transcript</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f8f8f8;
display: flex;
flex-direction: column;
height: 100vh;
}
main {
flex: 1;
display: flex;
}
iframe {
flex: 1;
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>
</head>
<body>
<main>
<iframe src="FallTranscript2025.pdf" title="Transcript">
<p class="fallback">
Your browser does not support PDFs.
<a class="button" href="FallTranscript2025.pdf" target="_blank">Download PDF</a>
</p>
</iframe>
</main>
</body>
</html>