-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (54 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Powderhorn</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Glegoo:wght@400;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/stylesheets/stylesheet.css" type="text/css" />
</head>
<body>
<header>
<nav>
<div class="navbar">
<div><a href="index.html"><img src="assets/images/logo.png" alt="logo" height="90px" /></a></div>
<div class="navitem"><a href="https://thepowderhorn.wordpress.com" target="_blank">Blog</a></div>
<div class="navitem"><a href="photos.html">Photos</a></div>
<div class="navitem"><a href="words.html">Words</a></div>
<div class="search">
<form class="searchbox">
<span><input type="text" name="search" id="topsearch" /></span>
<span class="accent"><input type="image" class="invert" src="assets/images/Search-icon.png" alt="search" /></span>
</form>
</div>
<div class="navright">
<div><a href="#">Sign In</a> / <a href="#">Dealer Locator</a></div>
<div class="viewcart"><a href="#">View Cart<img src="assets/images/shopping-cart-icon.svg" class="cart" alt="cart"></a></div>
</div>
</div>
</nav>
</header>
<div>
<div class="mainhed">The Powderhorn</div>
<p class="body">Being a site that makes surprisingly little sense at the moment. But hey ... the blog is real, if completely stale.</p>
<p class="body bold">Things still to do:</p>
<ul>
<li>memorize what I did to get this far</li>
<li>get a refresh on JS</li>
<li>learn everything else in the class</li>
</ul>
</div>
<footer>
<div class="footer">
<div class="footitem"><a href="index.html">Home</a></div>
<div class="footitem"><a href="https://thepowderhorn.wordpress.com" target="_blank">Blog</a></div>
<div class="footitem"><a href="photos.html">Photos</a></div>
<div class="footitem"><a href="words.html">Words</a></div>
<div class="copyright">© 2021 <a href="mailto:[email protected]">Pete Hahnloser</a></div>
</div>
</footer>
</body>
</html>