-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdistractions.html
35 lines (33 loc) · 1.5 KB
/
distractions.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Distractions</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="distractions.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href="https://unpkg.com/nes.css@latest/css/nes.min.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<style>
body {
font-family: 'Press Start 2P', cursive;
}
</style>
</head>
<body>
<div class="page-header">
<h1>Distractions</h1>
<h4>Things that I have worked on that went no where and keep me up at night. Just
keeping track of these for fun, maybe someday they will go somewhere.
</h4>
</div>
<div class="topnav container-fluid" id="topnav">
<a href="index.html">Home</a>
<a href="resume.html">Resume</a>
<a href="projects.html">Projects</a>
<a class="active" href="distractions.html">Distractions</a>
<a href="contact.html">Contact</a>
</div>
</body>
</html>