Added transcript.html

This commit is contained in:
2025-11-03 18:42:35 -06:00
parent dc011bdefa
commit 75bd9e6c31
4 changed files with 61 additions and 1 deletions

BIN
main.pdf

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.pdf}{View Unnoficial Transcript})
\item GPA: 4.73/4.0 (\href{https://resume.keshavanand.net/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

60
transcript.html Normal file
View File

@@ -0,0 +1,60 @@
<!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="main.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>