-
Notifications
You must be signed in to change notification settings - Fork 20
/
product.html
471 lines (463 loc) · 26.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
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
<!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">
<link rel="icon" href="./assets/phone.png" type="image/x-icon">
<title>Mobile Shop</title>
<!-- Bootstrap CDN -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!-- Owl-carousel CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"
integrity="sha256-UhQQ4fxEeABh4JrcmAJ1+16id/1dnlOEVCFOxDef9Lw=" crossorigin="anonymous" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css"
integrity="sha256-kksNxjDRxd/5+jGurZUJd1sdR2v+ClrCl3svESBaJqw=" crossorigin="anonymous" />
<!-- font awesome icons -->
<script src="https://kit.fontawesome.com/7860568151.js" crossorigin="anonymous"></script>
<!-- form validate -->
<link rel="stylesheet" href="https://ltp.crfnetwork.com/form-validate/css/style.css">
<!-- Custom CSS file -->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="form-check form-switch ms-auto mt-3 me-3" id="formSwitch">
<label class="form-check-label ms-3" for="inputSwicher">
<i class="fas fa-sun light-mode"></i>
<i class="fas fa-moon dark-mode d-none"></i>
</label>
<input class="form-check-input" type="checkbox" id="inputSwicher" />
</div>
<span id="top"></span>
<a class="scroll-up" href="#top"><i class="fas fa-chevron-up"></i></a>
<!-- start #header -->
<header id="header">
<div class="topnav d-flex justify-content-end px-4 py-1">
<div class="font-size-14">
<a href="./login.html" class="px-3 border-start text-dark">Login</a>
<a href="./register.html" class="px-3 border-start text-dark">Register</a>
<a href="./account.html" class="px-3 border-start text-dark">Account</a>
<a href="./manage.html" class="px-3 border-start text-dark">Manage</a>
</div>
</div>
<!-- Primary Navigation -->
<nav class="navbar navbar-expand-lg px-3 navbar-dark color-second-bg">
<img src="./assets/phone.png" class="logo">
<a class="navbar-brand" href="./index.html">Mobile Shop</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav m-auto">
<li class="nav-item active">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html#top-sale">Top sale</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html#special-price">Special Price</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html#new-phones">New Phones</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html#blogs">Blogs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./cart.html">Cart</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Coming Soon</a>
</li>
</ul>
<form action="#" class="font-size-12">
<a href="./cart.html" class="d-flex align-items-center rounded-pill bg-primary">
<span class="font-size-14 px-2 py-2 text-white">
<i class="fas fa-shopping-cart" aria-hidden="true"></i>
</span>
<div class="px-3 py-2 font-size-14 rounded-pill text-black bg-white">0</div>
</a>
</form>
</div>
</nav>
<!-- !Primary Navigation -->
</header>
<!-- !start #header -->
<!-- start #main-site -->
<main id="main-site">
<!-- start product -->
<section id="product" class="py-3">
<div class="container">
<div class="row">
<div class="col-sm-6">
<img src="./assets/products/1.png" alt="product" class="img-fluid">
<div class="pt-4 font-size-16">
<div class="col">
<button type="submit" class="btn btn-success form-control"
onclick="alert('This is demo only')">Proceed to Buy</button>
</div>
<div class="col">
<button type="submit" class="btn btn-warning form-control">Add to Cart</button>
</div>
</div>
</div>
<div class="col-sm-6 py-5">
<h5 class="font-size-20">Samsung Galaxy 10</h5>
<small>by Samsung</small>
<div class="d-flex">
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<a href="#" class="px-2 font-size-14">20,534 ratings | 1000+ answered
questions</a>
</div>
<hr class="m-0">
<!--- product price -->
<table class="my-3 font-size-14">
<tr>
<td>M.R.P:</td>
<td><strike>$162.00</strike></td>
</tr>
<tr>
<td>Deal Price:</td>
<td class="font-size-20 text-danger">$
<span>
152.00 </span>
</td>
<td>
<span class="font-size-12"> Inclusive of all taxes</span>
</td>
</tr>
<tr>
<td>You Save:</td>
<td><span class="font-size-16 text-danger">$152.00</span></td>
</tr>
</table>
<!--- !product price -->
<!-- #policy -->
<div id="policy">
<div class="d-flex">
<div class="return text-center me-5">
<div class="font-size-20 my-2 color-second">
<span class="fas fa-retweet border p-3 rounded-pill"></span>
</div>
<a href="#" class="font-size-12">10 Days <br> Replacement</a>
</div>
<div class="return text-center me-5">
<div class="font-size-20 my-2 color-second">
<span class="fas fa-truck border p-3 rounded-pill"></span>
</div>
<a href="#" class="font-size-12">About <br>Our</a>
</div>
<div class="return text-center me-5">
<div class="font-size-20 my-2 color-second">
<span class="fas fa-check-double border p-3 rounded-pill"></span>
</div>
<a href="#" class="font-size-12">1 Year <br>Warranty</a>
</div>
</div>
</div>
<!-- !policy -->
<hr>
<!-- order-details -->
<div id="order-details" class="d-flex flex-column">
<small>Delivery by : Mar 29 - Apr 1</small>
<small>Sold by <a href="#">Daily Electronics </a>(4.5 out of 5 | 18,198 ratings)</small>
<small><i class="fas fa-map-marker-alt color-primary"></i> Deliver to Customer -
424201</small>
</div>
<!-- !order-details -->
<div class="row">
<div class="col-6">
<!-- color -->
<div class="color my-3">
<div class="d-flex justify-content-between">
<h6>Color:</h6>
<div class="p-2 color-yellow-bg rounded-circle"><button
class="btn font-size-14"></button></div>
<div class="p-2 color-primary-bg rounded-circle"><button
class="btn font-size-14"></button></div>
<div class="p-2 color-second-bg rounded-circle"><button
class="btn font-size-14"></button></div>
</div>
</div>
<!-- !color -->
</div>
<div class="col-6">
<!-- product qty section -->
<div class="qty d-flex">
<h6>Quantity</h6>
<div class="px-4 d-flex">
<button class="qty-up border bg-light w-25" data-id="pro1"><i
class="fas fa-angle-up"></i></button>
<input type="text" data-id="pro1"
class="qty_input text-center border px-2 w-50" disabled value="1"
placeholder="1">
<button data-id="pro1" class="qty-down border bg-light w-25"><i
class="fas fa-angle-down"></i></button>
</div>
</div>
<!-- !product qty section -->
</div>
</div>
<!-- size -->
<div class="size my-3">
<h6>Size :</h6>
<div class="d-flex justify-content-between w-75">
<div class="border p-2">
<button type="button" class="btn p-0 font-size-14">4GB RAM</button>
</div>
<div class="border p-2">
<button type="button" class="btn p-0 font-size-14">6GB RAM</button>
</div>
<div class="border p-2">
<button type="button" class="btn p-0 font-size-14">8GB RAM</button>
</div>
</div>
</div>
<!-- !size -->
</div>
<div class="col-12">
<h6>Product Description</h6>
<hr>
<p class="font-size-14">Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Repellat inventore vero numquam error est ipsa, consequuntur temporibus debitis nobis sit,
delectus officia ducimus dolorum sed corrupti. Sapiente optio sunt provident, accusantium
eligendi eius reiciendis animi? Laboriosam, optio qui? Numquam, quo fuga. Maiores minus,
accusantium velit numquam a aliquam vitae vel? </p>
<p class="font-size-14">Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Repellat inventore vero numquam error est ipsa, consequuntur temporibus debitis nobis sit,
delectus officia ducimus dolorum sed corrupti. Sapiente optio sunt provident, accusantium
eligendi eius reiciendis animi? Laboriosam, optio qui? Numquam, quo fuga. Maiores minus,
accusantium velit numquam a aliquam vitae vel? </p>
</div>
</div>
</div>
</section>
<!-- !start product -->
<!-- Top Sale -->
<section id="top-sale">
<div class="container py-5">
<h4 class="font-size-20">Top Sale</h4>
<hr>
<!-- owl carousel -->
<div class="owl-carousel owl-theme">
<div class="item py-2 border rounded-2 bg-light">
<div class="product">
<a href="product.html"><img src="./assets/products/1.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Samsung Galaxy 10</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 border rounded-2 bg-light">
<div class="product">
<a href="product.html"><img src="./assets/products/2.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Readme Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 border rounded-2 bg-light">
<div class="product">
<a href="product.html"><img src="./assets/products/3.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Readme Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 border rounded-2 bg-light">
<div class="product">
<a href="product.html"><img src="./assets/products/6.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Samsung Galaxy 10</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 border rounded-2 bg-light">
<div class="product">
<a href="product.html"><img src="./assets/products/1.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Readme Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 border rounded-2 bg-light">
<div class="product">
<div class="d-flex flex-column">
<a href="product.html"><img src="./assets/products/1.png" class="img-fluid" alt="pro1"></a>
<div class="text-center">
<h6>Readme Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$122</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
</div>
<div class="item py-2 border rounded-2 bg-light">
<div class="product">
<div class="d-flex flex-column">
<a href="product.html"><img src="./assets/products/2.png" class="img-fluid" alt="pro1"></a>
<div class="text-center">
<h6>Readme Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$122</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
</div>
</div>
<!-- !owl carousel -->
</div>
</section>
<!-- !Top Sale -->
</main>
<!-- !start #main-site -->
<!-- start #footer -->
<footer id="footer" class="bg-black text-white py-5">
<div class="container">
<div class="row">
<div class="col-lg-3 col-12">
<h4 class="font-size-20">Mobile Shop</h4>
<p class="font-size-14 text-white-50">Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Repellendus, deserunt.</p>
</div>
<div class="col-lg-4 col-12">
<h4 class="font-size-20">Newslatter</h4>
<form>
<div class="col">
<input type="text" class="form-control" placeholder="Enter your email">
</div>
<div class="col">
<button type="submit" class="btn btn-primary my-2">Subscribe</button>
</div>
</form>
</div>
<div class="col-lg-2 col-12">
<h4 class="font-size-20">Information</h4>
<div class="d-flex flex-column flex-wrap">
<a href="#" class="font-size-14 text-white-50 pb-1">About Us</a>
<a href="#" class="font-size-14 text-white-50 pb-1">Delivery Information</a>
<a href="#" class="font-size-14 text-white-50 pb-1">Privacy Policy</a>
<a href="#" class="font-size-14 text-white-50 pb-1">Terms & Conditions</a>
</div>
</div>
<div class="col-lg-2 col-12">
<h4 class="font-size-20">Account</h4>
<div class="d-flex flex-column flex-wrap">
<a href="#" class="font-size-14 text-white-50 pb-1">My Account</a>
<a href="#" class="font-size-14 text-white-50 pb-1">Order History</a>
<a href="#" class="font-size-14 text-white-50 pb-1">Payment</a>
<a href="#" class="font-size-14 text-white-50 pb-1">Newslatters</a>
</div>
</div>
</div>
</div>
</footer>
<div class="copyright text-center py-2">
<p class="font-size-14 my-0">© Copyrights 2022. Desing By <a
href="https://www.facebook.com/profile.php?id=100045406261491" class="color-second">Chung Nguyễn</a>
</p>
</div>
<!-- !start #footer -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<!-- Owl Carousel Js file -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"
integrity="sha256-pTxD+DSzIwmwhOqTFN+DB+nHjO4iAsbgfyFq5K5bcE0=" crossorigin="anonymous"></script>
<!-- isotope plugin cdn -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/3.0.6/isotope.pkgd.min.js"
integrity="sha256-CBrpuqrMhXwcLLUd5tvQ4euBHCdh7wGlDfNz8vbu/iI=" crossorigin="anonymous"></script>
<!-- Custom Javascript -->
<script src="script.js"></script>
<script src="https://cdn.crfnetwork.com/js/dark-mode-switch.js"></script>
</body>
</html>