-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (76 loc) · 2.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!--
To change this template use Tools | Templates.
-->
<!DOCTYPE html>
<html>
<head>
<title>Products</title>
<meta charset="UTF-8" />
<link href="../styles.css" type="text/css" rel="stylesheet" />
</head>
<body>
<header id="site-masthead">
<h1>Star Wars Costumes</h1>
<p>Costumes, News, and more!</p>
<nav id="nav-main">
<ul>
<li><a href="../index.html">Home</a>
</li>
<li><a href="../articles/index.html">Articles</a>
</li>
<li><a href="index.html">Products</a>
</li>
<li><a href="../about.html">About</a>
</li>
</ul>
</nav>
</header>
<main>
<ul class="productList">
<li>
<a href="boysKrennic.html">
<img src="../images/krennic-thumb.png" />
</a>
<p class="itemName">Director Krennic Costume
</p>
<p class="itemPrice">$34.99</p>
</li>
<li>
<a href="mensJangoFett.html">
<img src="../images/fett-thumb.png" />
</a>
<p class="itemName">Jango Fett Costume
</p>
<p class="itemPrice">$119.99</p>
</li>
<li>
<a href="womensQueenAmidala.html">
<img src="../images/amidala-thumb.png" />
</a>
<p class="itemName">Queen Amidala Costume
</p>
<p class="itemPrice">$65.99</p>
</li>
<li>
<a href="mensJawaCostume.html">
<img src="../images/jawa-thumb.png" />
</a>
<p class="itemName">Jawa Costume
</p>
<p class="itemPrice">$55.99</p>
</li>
<li>
<a href="girlsRey.html">
<img src="../images/rey-thumb.png" />
</a>
<p class="itemName">Rey Costume
</p>
<p class="itemPrice">$35.99</p>
</li>
</ul>
</main>
<footer id="site-info">
<p>This site was created as a course project in educational setting. Design, structure, and formatting by Mitchell Youngerman. All images, content and brands maintain their original authorship.</p>
</footer>
</body>
</html>