-
Notifications
You must be signed in to change notification settings - Fork 2
/
shop.html
699 lines (674 loc) · 45.3 KB
/
shop.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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MultiShop - Online Shop Website Template</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Free HTML Templates" name="keywords">
<meta content="Free HTML Templates" name="description">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Topbar Start -->
<div class="container-fluid">
<div class="row py-1 px-xl-5 topibarz">
<div class="col-lg-6 d-none d-lg-block">
<div class="d-inline-flex align-items-center h-100">
<a class="text-body mr-3" href="">About</a>
<a class="text-body mr-3" href="">Contact</a>
<a class="text-body mr-3" href="">Help</a>
<a class="text-body mr-3" href="">FAQs</a>
</div>
</div>
<div class="col-lg-6 text-center text-lg-right">
<div class="d-inline-flex align-items-center">
<div class="btn-group">
<button type="button" class="btn btn-sm btn-light dropdown-toggle" data-toggle="dropdown">My
Account</button>
<div class="dropdown-menu dropdown-menu-right">
<a href="/log/signlog.html"><button class="dropdown-item" type="button">Login</button></a>
</div>
</div>
<div class="btn-group mx-2">
<button type="button" class="btn btn-sm btn-light dropdown-toggle"
data-toggle="dropdown">INR</button>
<div class="dropdown-menu dropdown-menu-right">
<button class="dropdown-item" type="button">USD</button>
</div>
</div>
<div class="btn-group">
<button type="button" class="btn btn-sm btn-light dropdown-toggle"
data-toggle="dropdown">EN</button>
<div class="dropdown-menu dropdown-menu-right">
<button class="dropdown-item" type="button">HIN</button>
</div>
</div>
</div>
<div class="d-inline-flex align-items-center d-block d-lg-none">
<a href="" class="btn px-0 ml-2">
<i class="fas fa-heart text-dark"></i>
<span class="badge text-dark border border-dark rounded-circle"
style="padding-bottom: 2px;">0</span>
</a>
<a href="" class="btn px-0 ml-2">
<i class="fas fa-shopping-cart text-dark"></i>
<span class="badge text-dark border border-dark rounded-circle"
style="padding-bottom: 2px;">0</span>
</a>
</div>
</div>
</div>
<div class="row align-items-center bg-light py-3 px-xl-5 d-none d-lg-flex">
<div class="col-lg-4">
<a href="" class="text-decoration-none">
<img src="../img/logo.png" alt="" class="logoimg">
</a>
</div>
<div class="col-lg-4 col-6 text-left">
<form action="">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search for products">
<div class="input-group-append">
<span class="input-group-text bg-transparent text-primary">
<i class="fa fa-search"></i>
</span>
</div>
</div>
</form>
</div>
<div class="col-lg-4 col-6 text-right">
<p class="m-0">Customer Service</p>
<h5 class="m-0">+012 345 6789</h5>
</div>
</div>
</div>
<!-- Topbar End -->
<!-- Navbar Start -->
<div class="container-fluid mb-30 navbar-color">
<div class="row px-xl-5">
<div class="col-lg-3 d-none d-lg-block">
<a class="btn d-flex align-items-center justify-content-between w-100" data-toggle="collapse"
href="#navbar-vertical" style="height: 65px; padding: 0 30px; background: var(--theme1);">
<h6 class="m-0" style="color: #FBF3EE;"><i class="fa fa-bars mr-2"></i>Categories</h6>
<i class="fa fa-angle-down" style="color: #FBF3EE;"></i>
</a>
<nav class="collapse position-absolute navbar navbar-vertical navbar-light align-items-start p-0 bg-light"
id="navbar-vertical" style="width: calc(100% - 30px); z-index: 999; box-shadow: 1px 2px 3px 2px #333;">
<div class="navbar-nav w-100">
<div class="nav-item dropdown dropright">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">Dresses <i
class="fa fa-angle-right float-right mt-1"></i></a>
<div class="dropdown-menu position-absolute m-0">
<a href="" class="dropdown-item">Men's Dresses</a>
<a href="" class="dropdown-item">Women's Dresses</a>
<a href="" class="dropdown-item">Baby's Dresses</a>
</div>
</div>
<a href="" class="nav-item nav-link">Shirts</a>
<a href="" class="nav-item nav-link">Jeans</a>
<a href="" class="nav-item nav-link">Swimwear</a>
<a href="" class="nav-item nav-link">Sleepwear</a>
<a href="" class="nav-item nav-link">Sportswear</a>
<a href="" class="nav-item nav-link">Jumpsuits</a>
<a href="" class="nav-item nav-link">Blazers</a>
<a href="" class="nav-item nav-link">Jackets</a>
<a href="" class="nav-item nav-link">Shoes</a>
</div>
</nav>
</div>
<div class="col-lg-9">
<nav class="navbar navbar-expand-lg bg-theme1 navbar-dark py-3 py-lg-0 px-0">
<a href="../index.html" class="text-decoration-none d-block d-lg-none">
<img src="../img/logo.png" alt="" class="logoimg">
</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between" id="navbarCollapse">
<div class="navbar-nav mr-auto py-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="shop.html" class="nav-item nav-link">Shop</a>
<a href="detail.html" class="nav-item nav-link">Shop Detail</a>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">Pages <i
class="fa fa-angle-down mt-1"></i></a>
<div class="dropdown-menu m-0">
<a href="cart.html" class="dropdown-item">Shopping Cart</a>
<a href="checkout.html" class="dropdown-item">Checkout</a>
</div>
</div>
<a href="contact.html" class="nav-item nav-link">Contact</a>
</div>
<div class="navbar-nav ml-auto py-0 d-none d-lg-block">
<a href="" class="btn px-0">
<i class="fas fa-heart text-primary"></i>
<span class="badge text-secondary border border-secondary rounded-circle"
style="padding-bottom: 2px;">0</span>
</a>
<a href="" class="btn px-0 ml-3">
<i class="fas fa-shopping-cart text-primary"></i>
<span class="badge text-secondary border border-secondary rounded-circle"
style="padding-bottom: 2px;">0</span>
</a>
</div>
</div>
</nav>
</div>
</div>
</div>
<!-- Navbar End -->
<!-- Breadcrumb Start -->
<div class="container-fluid">
<div class="row px-xl-5">
<div class="col-12">
<nav class="breadcrumb bg-light mb-30">
<a class="breadcrumb-item text-dark" href="#">Home</a>
<a class="breadcrumb-item text-dark" href="#">Shop</a>
<span class="breadcrumb-item active">Shop List</span>
</nav>
</div>
</div>
</div>
<!-- Breadcrumb End -->
<!-- Shop Start -->
<div class="container-fluid">
<div class="row px-xl-5">
<!-- Shop Sidebar Start -->
<div class="col-lg-3 col-md-4">
<!-- Price Start -->
<h5 class="section-title position-relative text-uppercase mb-3"><span class="bg-secondary pr-3">Filter by price</span></h5>
<div class="bg-light p-4 mb-30">
<form>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" checked id="price-all">
<label class="custom-control-label" for="price-all">All Price</label>
<span class="badge border font-weight-normal">1000</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="price-1">
<label class="custom-control-label" for="price-1">$0 - $100</label>
<span class="badge border font-weight-normal">150</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="price-2">
<label class="custom-control-label" for="price-2">$100 - $200</label>
<span class="badge border font-weight-normal">295</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="price-3">
<label class="custom-control-label" for="price-3">$200 - $300</label>
<span class="badge border font-weight-normal">246</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="price-4">
<label class="custom-control-label" for="price-4">$300 - $400</label>
<span class="badge border font-weight-normal">145</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between">
<input type="checkbox" class="custom-control-input" id="price-5">
<label class="custom-control-label" for="price-5">$400 - $500</label>
<span class="badge border font-weight-normal">168</span>
</div>
</form>
</div>
<!-- Price End -->
<!-- Color Start -->
<h5 class="section-title position-relative text-uppercase mb-3"><span class="bg-secondary pr-3">Filter by color</span></h5>
<div class="bg-light p-4 mb-30">
<form>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" checked id="color-all">
<label class="custom-control-label" for="price-all">All Color</label>
<span class="badge border font-weight-normal">1000</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="color-1">
<label class="custom-control-label" for="color-1">Black</label>
<span class="badge border font-weight-normal">150</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="color-2">
<label class="custom-control-label" for="color-2">White</label>
<span class="badge border font-weight-normal">295</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="color-3">
<label class="custom-control-label" for="color-3">Red</label>
<span class="badge border font-weight-normal">246</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="color-4">
<label class="custom-control-label" for="color-4">Blue</label>
<span class="badge border font-weight-normal">145</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between">
<input type="checkbox" class="custom-control-input" id="color-5">
<label class="custom-control-label" for="color-5">Green</label>
<span class="badge border font-weight-normal">168</span>
</div>
</form>
</div>
<!-- Color End -->
<!-- Size Start -->
<h5 class="section-title position-relative text-uppercase mb-3"><span class="bg-secondary pr-3">Filter by size</span></h5>
<div class="bg-light p-4 mb-30">
<form>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" checked id="size-all">
<label class="custom-control-label" for="size-all">All Size</label>
<span class="badge border font-weight-normal">1000</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="size-1">
<label class="custom-control-label" for="size-1">XS</label>
<span class="badge border font-weight-normal">150</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="size-2">
<label class="custom-control-label" for="size-2">S</label>
<span class="badge border font-weight-normal">295</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="size-3">
<label class="custom-control-label" for="size-3">M</label>
<span class="badge border font-weight-normal">246</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between mb-3">
<input type="checkbox" class="custom-control-input" id="size-4">
<label class="custom-control-label" for="size-4">L</label>
<span class="badge border font-weight-normal">145</span>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center justify-content-between">
<input type="checkbox" class="custom-control-input" id="size-5">
<label class="custom-control-label" for="size-5">XL</label>
<span class="badge border font-weight-normal">168</span>
</div>
</form>
</div>
<!-- Size End -->
</div>
<!-- Shop Sidebar End -->
<!-- Shop Product Start -->
<div class="col-lg-9 col-md-8">
<div class="row pb-3">
<div class="col-12 pb-1">
<div class="d-flex align-items-center justify-content-between mb-4">
<div>
<button class="btn btn-sm btn-light"><i class="fa fa-th-large"></i></button>
<button class="btn btn-sm btn-light ml-2"><i class="fa fa-bars"></i></button>
</div>
<div class="ml-2">
<div class="btn-group">
<button type="button" class="btn btn-sm btn-light dropdown-toggle" data-toggle="dropdown">Sorting</button>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item" href="#">Latest</a>
<a class="dropdown-item" href="#">Popularity</a>
<a class="dropdown-item" href="#">Best Rating</a>
</div>
</div>
<div class="btn-group ml-2">
<button type="button" class="btn btn-sm btn-light dropdown-toggle" data-toggle="dropdown">Showing</button>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item" href="#">10</a>
<a class="dropdown-item" href="#">20</a>
<a class="dropdown-item" href="#">30</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 pb-1">
<div class="product-item bg-light mb-4">
<div class="product-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/product-1.jpg" alt="">
<div class="product-action">
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-shopping-cart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="far fa-heart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-sync-alt"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="text-center py-4">
<a class="h6 text-decoration-none text-truncate" href="">Product Name Goes Here</a>
<div class="d-flex align-items-center justify-content-center mt-2">
<h5>$123.00</h5><h6 class="text-muted ml-2"><del>$123.00</del></h6>
</div>
<div class="d-flex align-items-center justify-content-center mb-1">
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small>(99)</small>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 pb-1">
<div class="product-item bg-light mb-4">
<div class="product-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/product-2.jpg" alt="">
<div class="product-action">
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-shopping-cart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="far fa-heart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-sync-alt"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="text-center py-4">
<a class="h6 text-decoration-none text-truncate" href="">Product Name Goes Here</a>
<div class="d-flex align-items-center justify-content-center mt-2">
<h5>$123.00</h5><h6 class="text-muted ml-2"><del>$123.00</del></h6>
</div>
<div class="d-flex align-items-center justify-content-center mb-1">
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star-half-alt text-primary mr-1"></small>
<small>(99)</small>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 pb-1">
<div class="product-item bg-light mb-4">
<div class="product-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/product-3.jpg" alt="">
<div class="product-action">
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-shopping-cart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="far fa-heart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-sync-alt"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="text-center py-4">
<a class="h6 text-decoration-none text-truncate" href="">Product Name Goes Here</a>
<div class="d-flex align-items-center justify-content-center mt-2">
<h5>$123.00</h5><h6 class="text-muted ml-2"><del>$123.00</del></h6>
</div>
<div class="d-flex align-items-center justify-content-center mb-1">
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star-half-alt text-primary mr-1"></small>
<small class="far fa-star text-primary mr-1"></small>
<small>(99)</small>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 pb-1">
<div class="product-item bg-light mb-4">
<div class="product-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/product-4.jpg" alt="">
<div class="product-action">
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-shopping-cart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="far fa-heart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-sync-alt"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="text-center py-4">
<a class="h6 text-decoration-none text-truncate" href="">Product Name Goes Here</a>
<div class="d-flex align-items-center justify-content-center mt-2">
<h5>$123.00</h5><h6 class="text-muted ml-2"><del>$123.00</del></h6>
</div>
<div class="d-flex align-items-center justify-content-center mb-1">
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="far fa-star text-primary mr-1"></small>
<small class="far fa-star text-primary mr-1"></small>
<small>(99)</small>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 pb-1">
<div class="product-item bg-light mb-4">
<div class="product-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/product-5.jpg" alt="">
<div class="product-action">
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-shopping-cart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="far fa-heart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-sync-alt"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="text-center py-4">
<a class="h6 text-decoration-none text-truncate" href="">Product Name Goes Here</a>
<div class="d-flex align-items-center justify-content-center mt-2">
<h5>$123.00</h5><h6 class="text-muted ml-2"><del>$123.00</del></h6>
</div>
<div class="d-flex align-items-center justify-content-center mb-1">
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small>(99)</small>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 pb-1">
<div class="product-item bg-light mb-4">
<div class="product-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/product-6.jpg" alt="">
<div class="product-action">
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-shopping-cart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="far fa-heart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-sync-alt"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="text-center py-4">
<a class="h6 text-decoration-none text-truncate" href="">Product Name Goes Here</a>
<div class="d-flex align-items-center justify-content-center mt-2">
<h5>$123.00</h5><h6 class="text-muted ml-2"><del>$123.00</del></h6>
</div>
<div class="d-flex align-items-center justify-content-center mb-1">
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star-half-alt text-primary mr-1"></small>
<small>(99)</small>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 pb-1">
<div class="product-item bg-light mb-4">
<div class="product-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/product-7.jpg" alt="">
<div class="product-action">
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-shopping-cart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="far fa-heart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-sync-alt"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="text-center py-4">
<a class="h6 text-decoration-none text-truncate" href="">Product Name Goes Here</a>
<div class="d-flex align-items-center justify-content-center mt-2">
<h5>$123.00</h5><h6 class="text-muted ml-2"><del>$123.00</del></h6>
</div>
<div class="d-flex align-items-center justify-content-center mb-1">
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star-half-alt text-primary mr-1"></small>
<small class="far fa-star text-primary mr-1"></small>
<small>(99)</small>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 pb-1">
<div class="product-item bg-light mb-4">
<div class="product-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/product-8.jpg" alt="">
<div class="product-action">
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-shopping-cart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="far fa-heart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-sync-alt"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="text-center py-4">
<a class="h6 text-decoration-none text-truncate" href="">Product Name Goes Here</a>
<div class="d-flex align-items-center justify-content-center mt-2">
<h5>$123.00</h5><h6 class="text-muted ml-2"><del>$123.00</del></h6>
</div>
<div class="d-flex align-items-center justify-content-center mb-1">
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="far fa-star text-primary mr-1"></small>
<small class="far fa-star text-primary mr-1"></small>
<small>(99)</small>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 pb-1">
<div class="product-item bg-light mb-4">
<div class="product-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/product-9.jpg" alt="">
<div class="product-action">
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-shopping-cart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="far fa-heart"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-sync-alt"></i></a>
<a class="btn btn-outline-dark btn-square" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="text-center py-4">
<a class="h6 text-decoration-none text-truncate" href="">Product Name Goes Here</a>
<div class="d-flex align-items-center justify-content-center mt-2">
<h5>$123.00</h5><h6 class="text-muted ml-2"><del>$123.00</del></h6>
</div>
<div class="d-flex align-items-center justify-content-center mb-1">
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="fa fa-star text-primary mr-1"></small>
<small class="far fa-star text-primary mr-1"></small>
<small class="far fa-star text-primary mr-1"></small>
<small>(99)</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<nav>
<ul class="pagination justify-content-center">
<li class="page-item disabled"><a class="page-link" href="#">Previous</span></a></li>
<li class="page-item active"><a class="page-link" href="#">1</a></li>
<li class="page-item"><a class="page-link" href="#">2</a></li>
<li class="page-item"><a class="page-link" href="#">3</a></li>
<li class="page-item"><a class="page-link" href="#">Next</a></li>
</ul>
</nav>
</div>
</div>
</div>
<!-- Shop Product End -->
</div>
</div>
<!-- Shop End -->
<!-- Footer Start -->
<div class="container-fluid bg-dark text-secondary mt-5 pt-5">
<div class="row px-xl-5 pt-5">
<div class="col-lg-4 col-md-12 mb-5 pr-3 pr-xl-5">
<h5 class="text-secondary text-uppercase mb-4">Get In Touch</h5>
<p class="mb-4">No dolore ipsum accusam no lorem. Invidunt sed clita kasd clita et et dolor sed dolor. Rebum tempor no vero est magna amet no</p>
<p class="mb-2"><i class="fa fa-map-marker-alt text-primary mr-3"></i>123 Street, New York, USA</p>
<p class="mb-2"><i class="fa fa-envelope text-primary mr-3"></i>[email protected]</p>
<p class="mb-0"><i class="fa fa-phone-alt text-primary mr-3"></i>+012 345 67890</p>
</div>
<div class="col-lg-8 col-md-12">
<div class="row">
<div class="col-md-4 mb-5">
<h5 class="text-secondary text-uppercase mb-4">Quick Shop</h5>
<div class="d-flex flex-column justify-content-start">
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Home</a>
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Our Shop</a>
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Shop Detail</a>
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Shopping Cart</a>
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Checkout</a>
<a class="text-secondary" href="#"><i class="fa fa-angle-right mr-2"></i>Contact Us</a>
</div>
</div>
<div class="col-md-4 mb-5">
<h5 class="text-secondary text-uppercase mb-4">My Account</h5>
<div class="d-flex flex-column justify-content-start">
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Home</a>
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Our Shop</a>
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Shop Detail</a>
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Shopping Cart</a>
<a class="text-secondary mb-2" href="#"><i class="fa fa-angle-right mr-2"></i>Checkout</a>
<a class="text-secondary" href="#"><i class="fa fa-angle-right mr-2"></i>Contact Us</a>
</div>
</div>
<div class="col-md-4 mb-5">
<h5 class="text-secondary text-uppercase mb-4">Newsletter</h5>
<p>Duo stet tempor ipsum sit amet magna ipsum tempor est</p>
<form action="">
<div class="input-group">
<input type="text" class="form-control" placeholder="Your Email Address">
<div class="input-group-append">
<button class="btn btn-primary">Sign Up</button>
</div>
</div>
</form>
<h6 class="text-secondary text-uppercase mt-4 mb-3">Follow Us</h6>
<div class="d-flex">
<a class="btn btn-primary btn-square mr-2" href="#"><i class="fab fa-twitter"></i></a>
<a class="btn btn-primary btn-square mr-2" href="#"><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-primary btn-square mr-2" href="#"><i class="fab fa-linkedin-in"></i></a>
<a class="btn btn-primary btn-square" href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="row border-top mx-xl-5 py-4" style="border-color: rgba(256, 256, 256, .1) !important;">
<div class="col-md-6 px-xl-0">
<p class="mb-md-0 text-center text-md-left text-secondary">
© <a class="text-primary" href="#">Domain</a>. All Rights Reserved. Designed
by
<a class="text-primary" href="https://htmlcodex.com">HTML Codex</a>
</p>
</div>
<div class="col-md-6 px-xl-0 text-center text-md-right">
<img class="img-fluid" src="img/payments.png" alt="">
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-primary back-to-top"><i class="fa fa-angle-double-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Contact Javascript File -->
<script src="mail/jqBootstrapValidation.min.js"></script>
<script src="mail/contact.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>