-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (63 loc) · 1.98 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
59
60
61
62
63
64
<!--
Website by Markus Hernandez
This is just the general page layout, content is
dynamically loaded into the page through page.js
-->
<!DOCTYPE html>
<html lang="en-us">
<head>
<!-- Meta -->
<title>Markus Hernandez</title>
<meta charset="utf-8">
<!-- Site Styles -->
<link rel="stylesheet" href="css/page.css"/>
<link rel="stylesheet" href="css/fonts.css"/>
<link rel="stylesheet" href="css/content.css"/>
<!-- Site Scripts -->
<script src="js/page.js"></script>
<script src="js/rotate.js"></script>
</head>
<body>
<!-- Main Page Layout -->
<img src="images/desert.jpg" id="background-img"/>
<div id="layout-grid">
<!-- Corner -->
<div id="corner">
<!-- Nothing Here By Default -->
</div>
<!-- Title Area -->
<div id="title-bar">
<span id="title">
Markus Hernandez
</span>
</div>
<!-- Navbar -->
<div id="sidebar">
<div content="content/home.html" class="sidebar-option">
<div>
<img src="images/home.png"/>
</div>
<div>
Home
</div>
</div>
<div content="content/projects.html" class="sidebar-option">
<div>
<img src="images/app.png"/>
</div>
<div>
Projects
</div>
</div>
<div content="content/contact.html" class="sidebar-option">
<div>
<img src="images/mail.png"/>
</div>
<div>
Contact
</div>
</div>
</div>
</div>
</body>
</html>