-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 1.71 KB
/
index.html
File metadata and controls
56 lines (52 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
<link
rel="shortcut icon"
type="image/png"
href="./assets/images/favicon.png"
/>
<title>Motorcycle Madness</title>
</head>
<body>
<div class="wrapper">
<header>
<p id="p3">
<img
id="headerphoto"
src="https://images.onlinelabels.com/images/clip-art/GDJ/Harley%20Davidson%20Motorcycle%20Silhouette%20By%20Emslichter-311401.png"
alt="Motorcycle Madness"
/>Motorcycle Madness
</p>
</header>
<nav>
<ul>
<li><a class="nav-active" href="index.html">Home</a></li>
<li>
<a href="#">Items</a>
<ul class="dropdown-1">
<li><a href="motorcycles.html">Motorcycles</a></li>
<li><a href="helmets.html">Helmets</a></li>
<li><a href="jackets.html">Jackets</a></li>
<li><a href="pants.html">Pants</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<p id="p3">
Welcome to the Motorcycle review website!<br />
We review Motorcycles and gear
</p>
<p id="p1">Motorcycle of the Week</p>
<legend id="featured"><ul id="item-list"></ul></legend>
<footer id="p1">Copyright © Sam Hewitt 2019</footer>
</div>
<script src="./assets/js/featured.js"></script>
</body>
</html>