forked from nfe213/siteV2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
71 lines (67 loc) · 2.67 KB
/
resume.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Max Seidel</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="src/icon.png">
<link rel="stylesheet" type="text/css" href="./css/siteWide.css">
<link rel="stylesheet" type="text/css" href="./css/resume.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap" rel="stylesheet">
</head>
<body>
<script src="js/hamburger.js"></script>
<div id="navOverlay" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="index.html">Home</a>
<a href="volunteering.html">Non-Profit Work</a>
<a href="projects.html">Projects</a>
<a href="articles.html">Articles & Awards</a>
<a href="resume.html">Resume</a>
</div>
</div>
<div class="header">
<div class="nav-bar-opposition-wrapper">
<button type="button" onclick="openNav()" class="hamburger">
<p>menu</p>
</button>
<a href="index.html">
<img src="src/icon.png" alt="Max Seidel Logo" class="logo">
<p class="opposition-text header-text">Max Seidel</p>
</a>
</div>
<ul class="nav-bar-links-wrapper">
<a href="index.html">
<li class="nav-bar-item header-text">Home</li>
</a>
<a href="volunteering.html">
<li class="nav-bar-item header-text" onmouseover="navHover()" onmouseover="navReset()">Non-Profit Work</li>
</a>
<a href="projects.html">
<li class="nav-bar-item header-text" onmouseover="navHover()" onmouseover="navReset()">Projects</li>
</a>
<a href="articles.html">
<li class="nav-bar-item header-text" onmouseover="navHover()" onmouseover="navReset()">Articles & Awards</li>
</a>
<a href="resume.html">
<li class="nav-bar-item header-text" onmouseover="navHover()" onmouseover="navReset()">Resume</li>
</a>
</ul>
</div>
<div class="body">
<a href="./docs/MAXSEIDELResume2022.pdf" target="_blank"><h2 class="link">Download Resume</h2></a>
</div>
<div class="footer">
<p>© 2022 Max Seidel</p>
</div>
</body>
<script src="https://mozilla.github.io/pdf.js/build/pdf.js"></script>
<script src="./js/main.js"></script>
</html>