-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
177 lines (171 loc) · 5.27 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mens Fashion store</title>
<link rel="stylesheet" href="styleSheet.css">
</head>
<body id="[blazerId].exercise3.html">
<logo class="logo">
<center>
<img src="images\logo.png" alt="Check URL" width="100px" height="100px">
<big>
Mens Fashion Store
</big>
</center>
</logo>
<nav class="menu-bar">
<hr>
<ul>
<li class="active">
<a href="index.html">
Home
</a>
</li>
<li>
<a href="itemCatalog.html">
Item Catalog
</a>
</li>
<li>
<a href="viewCart.html">
View Cart
</a>
</li>
<li>
<a href="login.html">
Login
</a>
</li>
<li>
<a href="signup.html">
Sign Up
</a>
</li>
<li>
<a href="logout.html">
Logout
</a>
</li>
<li>
<a href="aboutUs.html">
About Us
</a>
</li>
</ul>
<hr>
</nav>
<main>
<center>
<h1>
Items in stock: <br>
</h1>
<h2>
Men Clothing: <br>
</h2>
</center>
<categories1 class="cat">
<jacket class="items">
<img src="images\jacket.jpg" alt="Check URL" width="300px" height="300px">
<h3>
<u>
<b>
<center>
Jacket<br>
</center>
</b>
</u>
</h3>
<center>
Price = 250$<br> Denim Jacket from <i>Levis</i> available with very fine quality.
</center>
</jacket>
<hoodie class="items">
<img src="images\hoodie.jpg" alt="Check URL" width="300px" height="300px">
<h3>
<u>
<b>
<center>
Hoodie<br>
</center>
</b>
</u>
</h3>
<center>
Price = 100$<br> Hoodie from <i>Tommy Hilfiger</i> available with very fine quality.
</center>
</hoodie>
<shirt class="items">
<img src="images\shirt.jpg" alt="Check URL" width="300px" height="300px">
<h3>
<u>
<b>
<center>
Shirt<br>
</center>
</b>
</u>
</h3>
<center>
Price = 150$<br> Shirt from <i>Cougar</i> available with very fine quality.
</center>
</shirt>
<jeans class="items">
<img src="images\jeans.jpg" alt="Check URL" width="300px" height="300px">
<h3>
<u>
<b>
<center>
Jeans<br>
</center>
</b>
</u>
</h3>
<center>
Price = 130$<br> Jeans from <i>Levis</i> available with very fine quality.
</center>
</jeans>
</categories1>
<br>
<center>
<h2>
Men Accessories: <br>
</h2>
</center>
<categories2 class="cat">
<watch class="items">
<img src="images\watch.jpg" alt="Check URL" width="300px" height="300px">
<h3>
<u>
<b>
<center>
Wrist Watch<br>
</center>
</b>
</u>
</h3>
<center>
Price = 500$<br> Wrist Watch from <i>Tissot</i> available with very fine quality.
</center>
</watch>
<bracelet class="items">
<img src="images\bracelet.jpg" alt="Check URL" width="300px" height="300px">
<h3>
<u>
<b>
<center>
Bracelet<br>
</center>
</b>
</u>
</h3>
<center>
Price = 60$<br> Bracelets from <i>Seek Discomfort</i> available with very fine quality.
</center>
</bracelet>
</categories2>
</main>
</body>
</html>