-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 2.21 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>nyghtly.net / Home</title>
<meta http-equiv="Content-Security-Policy" content="default-src 'none';
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="index.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="#intro">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" aria-current="page">Home</a>
</li>
<li>
<a href="portfolio.html">View Portfolio</a>
</li>
<!-- <li>
<a href="resume.html">View Resume</a>
</li> -->
<li>
<a href="contact.html">Contact Me</a>
</li>
</ul>
</nav>
<main id="intro" tabindex="-1">
<h1>Hello!</h1>
<p>My name is Derek, also known as <strong><code>nyghtly</code></strong>, a software engineer who loves to code.</p>
<!-- <p>I've got a passion for learning, and so I'm constanstly challenging myself by building projects using new languages
and tools. This website is just one example. It's responsive and also has fun animations. Try viewing it on your
phone, tablet or computer--it works everywhere.</p> -->
<p>Check out some of the <a href="portfolio.html">cool stuff</a> that I've made.</p>
</main>
<footer></footer>
<!-- javaScript -->
<script src="topnav.js"></script>
</html>