-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
73 lines (65 loc) · 2.8 KB
/
cv.html
File metadata and controls
73 lines (65 loc) · 2.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="CV - Ethan Wang">
<title>CV - Ethan Wang</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="images/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="images/favicon.svg" />
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png" />
<link rel="manifest" href="images/site.webmanifest" />
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<ul class="nav-menu">
<a href="index.html" class="nav-logo">
<li class="nav-item">Ethan Wang</li>
</a>
<a href="publications.html" class="nav-link active">
<li class="nav-item">Publications</li>
</a>
<a href="cv.html" class="nav-link">
<li class="nav-item">CV</li>
</a>
<a href="resume.html" class="nav-link">
<li class="nav-item">Resume</li>
</a>
</ul>
</div>
</nav>
<main class="container">
<section class="cv-section">
<h1>Curriculum Vitae</h1>
<div class="cv-download">
<a href="files/Ethan_Wang_curriculum_vitae.pdf" class="download-button" download>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<polyline points="7 10 12 15 17 10"></polyline>
<line x1="12" y1="15" x2="12" y2="3"></line>
</svg>
Download CV (PDF)
</a>
<p class="cv-note">Last updated: May 2026</p>
</div>
<div class="cv-viewer">
<embed src="files/Ethan_Wang_curriculum_vitae.pdf" type="application/pdf" width="100%" height="800px" />
<p class="cv-fallback">
If the PDF doesn't display, you can <a class="social-link"
href="files/Ethan_Wang_curriculum_vitae.pdf" download>download it here</a>.
</p>
</div>
</section>
</main>
<footer class="footer">
<p>© <span id="year"></span> Ethan Wang</p>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>