-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresume.html
83 lines (70 loc) · 2.32 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
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<title>Resume</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel = "stylesheet" type = "text/css" href = "style.css" />
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
particlesJS.load('particles-js', 'particles.json');
</script>
</head>
<div class="menu">
<ul>
<li><a href="index.html"> Home </a></li>
<li><a href="projects.html"> Projects </a></li>
<li><a href="resume.html"> Resume </a></li>
<li><a href="links.html"> Links </a></li>
<li><a href="mailto:[email protected]"> Contact </a></li>
</ul>
</div>
<body>
<div class="parallaxResume">
<div class="header">
<span class="border">Resume</span>
</div>
</div>
<div class="content">
<div id="particles-js"></div>
<div id="text">
<h3>Last updated 9/7/2019</h3>
<p></p>
<a target="_blank" href="resume.pdf">
<div class="gallery">
<img src="resume.png" alt="Resume">
<div class="description">Click to View Resume</div>
</div>
</a>
<p></p>
</div>
<div class="foot">
<div class="foot-left">
<p>McNibbler.com and
<br>thomas.coffee are
<br>owned by Thomas
<br>Kaunzinger (2018)
</p>
</div>
<div class="foot-middle">
<p>Contact
<br><a href="https://linkedin.com/in/thomas-kaunzinger-557482170/">LinkedIn</a>
<br><a href="https://github.com/McNibbler">Github</a>
<br><a href="mailto:[email protected]">Email</a>
</p>
</div>
<div class="foot-right">
<p>If you're reading
<br>this, you just
<br>found my secret
<br><a href="shrex.html">web pages</a> I made
<br>back in highschool.
</p>
</div>
</div>
</div>
</body>
</html>