-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.html
303 lines (294 loc) · 10.5 KB
/
product.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Products | RedStore</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css" integrity="undefined" crossorigin="anonymous">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css"> ->>> Search Google for Font-awesome for cdn-->
<!--chatbot widget code-->
<!-- Smartsupp Live Chat script -->
<script type="text/javascript">
var _smartsupp = _smartsupp || {};
_smartsupp.key = '2d8060ed1f23d5db6383e290493de078642bc5f0';
window.smartsupp||(function(d) {
var s,c,o=smartsupp=function(){ o._.push(arguments)};o._=[];
s=d.getElementsByTagName('script')[0];c=d.createElement('script');
c.type='text/javascript';c.charset='utf-8';c.async=true;
c.src='https://www.smartsuppchat.com/loader.js?';s.parentNode.insertBefore(c,s);
})(document);
</script>
</head>
<body>
<!--header section-->
<div class="container">
<div class="navbar">
<div class="logo">
<a href="index.html"><img alt="logo" src="images/logo.png" width="125px"></a>
</div>
<nav>
<ul id="MenuItems">
<li><a href="index.html">Home</a></li>
<li><a href="product.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>
<a href="cart.html"><img src="images/cart.png" width="30px" height="30px"></a> <!--Cart image-->
<img src="images/menu.png" class="menu-icon" onclick="menutoggle()"> <!--Menu image-->
</div>
</div>
<!-- all products-->
<div class="small-container">
<div class="row row-2">
<h2>All Products</h2>
<select>
<option>Default Sort</option>
<option>Sort by Price</option>
<option>Sort by Popularity</option>
<option>Sort by Rating</option>
<option>Sort by Sale</option>
</select>
</div>
<div class="row">
<div class="col-4">
<a href="productsdetails.html"><img src="images/product-1.jpg" alt="product-1"></a>
<a href="productsdetails.html"><h4>Printed Red 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>Ksh. 1,000</p>
</div>
<div class="col-4">
<img src="images/product-2.jpg" alt="product-2">
<h4>Black Running 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-o"></i>
<i class="fa fa-star-o"></i>
</div>
<p>Ksh. 3,000</p>
</div>
<div class="col-4">
<img src="images/product-3.jpg" alt="product-3">
<h4>Grey-Black Sweatpants</h4>
<div class="rating">
<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>
<i class="fa fa-star-o"></i>
</div>
<p>Ksh. 900</p>
</div>
<div class="col-4">
<img src="images/product-4.jpg" alt="product-4">
<h4>Printed Navy 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-half-o"></i>
</div>
<p>Ksh. 750</p>
</div>
</div>
<div class="row">
<div class="col-4">
<img src="images/product-5.jpg" alt="product-5">
<h4>Printed Red 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>Ksh. 1,000</p>
</div>
<div class="col-4">
<img src="images/product-6.jpg" alt="product-6">
<h4>Black Running 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-o"></i>
<i class="fa fa-star-o"></i>
</div>
<p>Ksh. 3,000</p>
</div>
<div class="col-4">
<img src="images/product-7.jpg" alt="product-7">
<h4>Grey-Black Sweatpants</h4>
<div class="rating">
<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>
<i class="fa fa-star-o"></i>
</div>
<p>Ksh. 900</p>
</div>
<div class="col-4">
<img src="images/product-8.jpg" alt="product-8">
<h4>Printed Navy 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-half-o"></i>
</div>
<p>Ksh. 750</p>
</div>
<!--second row of latest products-->
<div class="row">
<div class="col-4">
<img src="images/product-9.jpg" alt="product-9">
<h4>Printed Red 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>Ksh. 1,000</p>
</div>
<div class="col-4">
<img src="images/product-10.jpg" alt="product-10">
<h4>Black Running 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-o"></i>
<i class="fa fa-star-o"></i>
</div>
<p>Ksh. 3,000</p>
</div>
<div class="col-4">
<img src="images/product-11.jpg" alt="product-11">
<h4>Grey-Black Sweatpants</h4>
<div class="rating">
<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>
<i class="fa fa-star-o"></i>
</div>
<p>Ksh. 900</p>
</div>
<div class="col-4">
<img src="images/product-12.jpg" alt="product-12">
<h4>Printed Navy 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-half-o"></i>
</div>
<p>Ksh. 750</p>
</div>
</div>
<div class="page-btn">
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>5</span>
<span>→</span>
</div>
</div>
</div>
<!--footer-->
<div class="footer">
<div class="container">
<div class="row">
<div class="footer-col-1">
<h3>Download Our Apps:</h3>
<p>Download app for Android and iOS mobile phones.</p>
<div class="app-logo">
<img src="images/play-store.png" alt="play-store-logo">
<img src="images/app-store.png" alt="app-store-logo">
</div>
</div>
<div class="footer-col-2">
<img src="images/logo-white.png" alt="white-logo">
<p>Our Purpose is to Sustainably Make the Pleasure and Benefits of Sports Accessible to Many.</p>
</div>
<div class="footer-col-3">
<h3>Useful Links:</h3>
<ul>
<li>Coupons</li>
<li>Blog Posts</li>
<li>Return Policy</li>
<li>Join Affiliate Program</li>
</ul>
</div>
<div class="footer-col-4">
<h3>Follow Us On:</h3>
<ul>
<li>Facebook</li>
<li>Twitter</li>
<li>Instagram</li>
<li>Youtube</li>
</ul>
</div>
</div>
<hr>
<p class="copyright">Copyright 2021 - The Mink Tribe</br><span>Designed by<a href="https://www.muemablain.wordpress.com/portfolio/" style="color:#ff523b" target="_blank"> Blain Muema</a></span></p>
</div>
</div>
<!--JavaScript for toggle menu-->
<script>
var MenuItems = document.getElementById("MenuItems");
MenuItems.style.maxHeight = "0px";
function menutoggle(){
if (MenuItems.style.maxHeight == "0px")
{
MenuItems.style.maxHeight = "200px";
}
else
{
MenuItems.style.maxHeight = "0px";
}
}
</script>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = {
apiKey: "AIzaSyBX5RuISf142-7vydPAXrwyFEVFvWzF968",
authDomain: "redstore-4abf8.firebaseapp.com",
projectId: "redstore-4abf8",
storageBucket: "redstore-4abf8.appspot.com",
messagingSenderId: "580540135505",
appId: "1:580540135505:web:e90dc5dfbd257b74b9e070",
measurementId: "G-3NV9B43XD7"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
</body>
</html>