-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·49 lines (45 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.min.js"></script>
<link rel="stylesheet" href="index.css">
<title>Jacob Hahn's Website</title>
<meta charset="UTF-8">
<style>
html, body {
height: 100%;
margin: 0;
}
body {
background: black;
display: flex;
align-items: center;
justify-content: center;
color: white;
list-style-type: none;
}
</style>
</head>
<body>
<canvas id="game"></canvas>
<div id="title">
<h1>Jacob Hahn</h1>
<h3>Engineering, Photography, and Anything Else</h3>
</div>
<div id="nav">
<nav>
<li>
<a href="projects/projects.html">Projects</a>
</li>
<li>
<a href="photo/photo.html">Photography</a>
</li>
<li>
<a href="about/about.html">About Me</a>
</li>
</nav>
</div>
<a href="https://github.com/jacobtohahn/website">Coded in Raleigh, NC by Jacob Hahn</a>
<script src="game.js"></script>
</body>
</html>