-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
55 lines (53 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>nyghtly.net / Resume</title>
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
script-src 'self';
style-src 'self' https://use.fontawesome.com https://fonts.googleapis.com;
img-src 'self';
font-src 'self' https://use.fontawesome.com https://fonts.gstatic.com;
frame-ancestors 'self';
form-action 'self';
base-uri 'self';
strict-dynamic">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="X-Frame-Options" content="SAMEORIGIN">
<meta http-equiv="X-XSS-Protection" content="1; mode=block">
<meta http-equiv="Strict-Transport-Security" content="max-age=63072000">
<meta charset="UTF-8">
<link rel="stylesheet" href="resume.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
</head>
<a id="skip" href="#cv">Skip to Main Content</a>
<nav class="topnav" id="js-topnav">
<ul>
<li class="icon" id="icon">
<a id="js-topnav-activator">
<i class="fas fa-bars"></i>
</a>
</li>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="portfolio.html">View Portfolio</a>
</li>
<li>
<a href="resume.html" aria-current="page">View Resume</a>
</li>
<li>
<a href="contact.html">Contact Me</a>
</li>
</ul>
</nav>
<main>
<!-- <object id="cv" class="cv-object" data="data/derekcv-clean.pdf" type="application/pdf" aria-label="View My Resume"
tabindex="-1"></object> -->
<p>Please contact me for an up-to-date resume!</p>
</main>
<!-- javaScript -->
<script src="topnav.js"></script>
</html>