-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (45 loc) · 1.79 KB
/
index.html
File metadata and controls
57 lines (45 loc) · 1.79 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Andrew Hwang</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="media/favicon.png" />
<script src="js/background.js"></script>
<script src="js/navigation.js"></script>
<script src="js/projects.js"></script>
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/home.css" />
<link rel="stylesheet" href="css/about.css" />
<link rel="stylesheet" href="css/projects.css" />
<link rel="stylesheet" href="css/photos.css" />
<link rel="stylesheet" href="css/contact.css" />
</head>
<body>
<img class="logo" id="mainLogo" src="media/LogoWide01.png" alt="andrew hwang" onclick="navigate('home', true)">
<div id="centerContainer">
<div id="navigation">
<ul id="navList">
<li class="navItem navActive" id="homeNav" onclick="">
<span class="navText textActive">home</span>
</li>
<li class="navItem" id="aboutNav">
<span class="navText">about</span>
</li>
<li class="navItem" id="projectsNav">
<span class="navText">projects</span>
</li>
<li class="navItem" id="photosNav">
<span class="navText">photography</span>
</li>
<li class="navItem" id="contactNav">
<span class="navText">contact</span>
</li>
</ul>
</div>
<div id="contentGrid"></div>
</div>
<canvas id="background"></canvas></canvas>
</body>
</html>