-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
40 lines (35 loc) · 1.24 KB
/
cv.html
File metadata and controls
40 lines (35 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV - lkunik</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li class="nav-title"><strong>Lewis T. Kunik</strong></li>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="cv.html" class="active">CV</a></li>
<li><a href="thru-hikes.html">Thru-hikes</a></li>
</ul>
</nav>
<main>
<h1>Curriculum Vitae</h1>
<div class="cv-download">
<p><a href="CV/LKunik_CV.pdf" class="button" download>Download CV (PDF)</a></p>
</div>
<section>
<h2>Education</h2>
<p>Ph.D. Atmospheric Sciences, University of Utah, Salt Lake City, UT (2021-2026)</p>
<p>B.S. Computer Engineering, University of Wisconsin-Madison, Madison, WI (2012-2016)</p>
<p>B.S. Computer Science, University of Wisconsin-Madison, Madison, WI (2012-2016)</p>
</section>
</main>
<footer>
<p>© 2026 Lewis Kunik</p>
</footer>
</body>
</html>