-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (92 loc) · 2.43 KB
/
index.html
File metadata and controls
97 lines (92 loc) · 2.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, intial-scale = 1">
<meta name="author" content="Justin Applefield">
<meta name="description" content="Hello! My name is Justin Applefield, come check out what I am up to.">
<title>Justin Applefield</title>
<link rel="stylesheet" href="/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet">
<script>
function menuToggle() {
var x = document.getElementById("mobile-navbar");
if (x.style.display === "block") { x.style.display = "none"; }
else { x.style.display = "block"; }
}
</script>
<script src="/js/glightbox.min.js"></script>
</head>
<body id="home-page">
<header>
<div id="header-nav">
<nav>
<ul id="navbar">
<li class="selected">
<a href="/">Home</a>
</li>
<li>
<a href="/bio/">Bio</a>
</li>
<li>
<a href="/photos/">Photos</a>
</li>
<li>
<a href="/blog/">Blog</a>
</li>
<li>
<a href="/vlog/">Vlog</a>
</li>
</ul>
</nav>
</div>
<div id="mobile-nav">
<nav>
<button onclick="menuToggle()">Menu</button>
<ul id="mobile-navbar">
<li class="selected">
<a href="/">Home</a>
</li>
<li>
<a href="/bio/">Bio</a>
</li>
<li>
<a href="/photos/">Photos</a>
</li>
<li>
<a href="/blog/">Blog</a>
</li>
<li>
<a href="/vlog/">Vlog</a>
</li>
</ul>
</nav>
</div>
</header>
<div id="content-wrapper">
<div id="big-name">
Justin Applefield
</div>
<div id="subtitle-text">
<a href="mailto:justin@applefield.me">justin@applefield.me</a>
</div>
</div>
<footer id="footer">
<div id="social-links">
<ul>
<li>
<a href="https://www.linkedin.com/in/justin-applefield/">
<img src="/img/linkedin.png" height=40px>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCmV-cLA5UyLiv7KAn6fsMTQ?view_as=subscriber">
<img src="/img/youtube.png" height=40px>
</a>
</li>
</ul>
</div>
Copyright © Justin Applefield, 2022
</footer>
</body>
</html>