-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
333 lines (333 loc) · 14.2 KB
/
products.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
<!-- This is my html and css website -->
<!-- this is the products page -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- author -->
<meta content="Davjot Singh" name="description">
<!-- linking the css file -->
<link rel="stylesheet" href="style.css" type="text/css">
<!-- linking the font awesome cdn link -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- font family to the li items under logo class(home,etc) -->
<!-- font family = Staatliches -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Staatliches&display=swap" rel="stylesheet">
<!-- font family to h1 tag under first col-2 -->
<!-- font family = Hanalei Fill -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Hanalei+Fill&display=swap" rel="stylesheet">
<!-- font family to p tag under first col-2 -->
<!-- font family = Langar -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Langar&display=swap" rel="stylesheet">
<!-- font family of h4 tag under col-4 class -->
<!-- font family = yellowtail -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Yellowtail&display=swap" rel="stylesheet">
<!-- font family of p tag under col-4 class -->
<!-- font family = redressed -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Redressed&display=swap" rel="stylesheet">
<!-- font family to h2 class:title -->
<!-- font family = audiowide -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Audiowide&display=swap" rel="stylesheet">
<!-- font family under col-3 class under testimonial class -->
<!-- font family = dancing script -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap" rel="stylesheet">
<!-- font family to h3 tag under col-3 class under testimonial class -->
<!-- font family = anton -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
<!-- font family to h3 tag under class footer -->
<!-- font family = aclonica -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Aclonica&display=swap" rel="stylesheet">
<!-- font family tyo p tag under footer class -->
<!-- font family = shadow into light two -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap" rel="stylesheet">
<!-- font family to li tag under footer class -->
<!-- font family = black ops one -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap" rel="stylesheet">
<title>Products</title>
</head>
<body>
<!-- first section: navbar and the front page of website -->
<div class="container">
<div class="navbar">
<div class="logo">
<img src="logo.png" alt="logo">
</div>
<nav>
<ul id="MenuItems">
<li><a href="e-commerce.html">HOME</a></li>
<li><a href="products.html">PRODUCTS</a></li>
<li><a href="">ABOUT</a></li>
<li><a href="">CONTACT</a></li>
<li><a href="account.html">ACCOUNT</a></li>
</ul>
</nav>
<img src="cart.png" alt="cart" width="30px" height="30px">
<img src="menu.png" alt="menu" class="menu-icon" onclick="menutoggle()">
</div>
</div>
<!-- second section: featured products -->
<div class="small-container">
<!-- first row -->
<div class="row row-2">
<h2>All Products</h2>
<select>
<option>Default Sorting</option>
<option>Sort by price</option>
<option>Sort by Popularity</option>
<option>Sort by Rating</option>
<option>Sort by Sale</option>
</select>
</div>
<!-- second row -->
<div class="row">
<!-- first col-4 -->
<div class="col-4">
<a href="product-details.html"><img src="product-1.jpg" alt="product1"></a>
<a href="product-details.html"><h4>Red Printed T-Shirt</h4></a>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$50.00</p>
</div>
<!-- second col-4 -->
<div class="col-4">
<img src="product-2.jpg" alt="product2">
<h4>Black Shoes</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$75.00</p>
</div>
<!-- third col-4 -->
<div class="col-4">
<img src="product-3.jpg" alt="product3">
<h4>Grey Jeans</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-half-o"></i>
</div>
<p>$40.00</p>
</div>
<!-- fourth col-4 -->
<div class="col-4">
<img src="product-4.jpg" alt="product4">
<h4>Blue T-Shirt</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$50.00</p>
</div>
</div>
<!-- third row -->
<div class="row">
<!-- first col-4 -->
<div class="col-4">
<img src="product-5.jpg" alt="product5">
<h4>Grey Shoes</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$80.00</p>
</div>
<!-- second col-4 -->
<div class="col-4">
<img src="product-6.jpg" alt="product6">
<h4>Puma T-Shirt</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-half-o"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$70.00</p>
</div>
<!-- third col-4 -->
<div class="col-4">
<img src="product-7.jpg" alt="product7">
<h4>Pack Of Socks</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$30.00</p>
</div>
<!-- fourth col-4 -->
<div class="col-4">
<img src="product-8.jpg" alt="product8">
<h4>Fossil Black Watch</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-half-o"></i>
</div>
<p>$100.00</p>
</div>
</div>
<!-- fourth row -->
<div class="row">
<!-- fifth col-4 -->
<div class="col-4">
<img src="product-9.jpg" alt="product9">
<h4>Roadster Black Watch</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-half-o"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$90.00</p>
</div>
<!-- sixth col-4 -->
<div class="col-4">
<img src="product-10.jpg" alt="product10">
<h4>Black-Red Shoes</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$75.00</p>
</div>
<!-- seventh col-4 -->
<div class="col-4">
<img src="product-11.jpg" alt="product11">
<h4>Grey Shoes</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$60.00</p>
</div>
<!-- eighth col-4 -->
<div class="col-4">
<img src="product-12.jpg" alt="product12">
<h4>Black Jeans</h4>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$45.00</p>
</div>
</div>
<div class="page-btn">
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>→</span>
</div>
</div>
<!-- third section:footer -->
<div class="footer">
<div class="container">
<div class="row">
<!-- first footer col -->
<div class="footer-col-1">
<h3>Download Our App</h3>
<p>Download App for Android and IOS mobile phone</p>
<div class="app-logo">
<!-- adding links to stores -->
<a href="https://play.google.com/store"><img src="play-store.png" alt="playstore"></a>
<a href="https://www.apple.com/in/app-store/"><img src="app-store.png" alt="appstore"></a>
</div>
</div>
<!-- second footer col -->
<div class="footer-col-2">
<img src="logo-white.png" alt="logo">
<p>Our purpose is to sustainably make the pleasure and benefits of sports goods accesible to many.</p>
</div>
<!-- third footer col -->
<div class="footer-col-3">
<h3>Useful Links</h3>
<ul>
<li>COUPONS</li>
<li>BLOG POST</li>
<li>RETURN POLICY</li>
<li>JOIN AFFILIATE</li>
</ul>
</div>
<!-- fourth footer col -->
<div class="footer-col-4">
<h3>Follow us</h3>
<ul>
<!-- adding links to social handles -->
<a href="https://www.facebook.com"><li><i class="fa fa-facebook-official"></i>FaceBook</li></a>
<a href="https://www.twitter.com"><li><i class="fa fa-twitter-square"></i>Twitter</li></a>
<a href="https://www.instagram.com"><li><i class="fa fa-instagram"></i>Instagram</li></a>
<a href="https://www.youtube.com"><li><i class="fa fa-youtube"></i>YouTube</li></ul></a>
</ul>
</div>
</div>
<hr>
<p class="copyright"><i class="fa fa-copyright"></i>CopyRight Davjot Singh</p>
</div>
</div>
<!-- js for togglemenu -->
<script>
var MenuItems = document.getElementById("MenuItems");
MenuItems.style.maxHeight = "0px";
function menutoogle(){
if(MenuItems.style.maxHeight == "0px")
{
MenuItems.style.maxHeight = "200px";
}
else{
MenuItems.style.maxHeight = "0px";
}
}
</script>
</body>
</html>