-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwishlist.html
868 lines (866 loc) · 60.6 KB
/
wishlist.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
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
<!doctype html>
<html class="no-js" lang="zxx">
<!-- wishlist31:27-->
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Wishlist || limupa - Digital Products Store eCommerce Bootstrap 4 Template</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.png">
<!-- Material Design Iconic Font-V2.2.0 -->
<link rel="stylesheet" href="css/material-design-iconic-font.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Font Awesome Stars-->
<link rel="stylesheet" href="css/fontawesome-stars.css">
<!-- Meanmenu CSS -->
<link rel="stylesheet" href="css/meanmenu.css">
<!-- owl carousel CSS -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<!-- Slick Carousel CSS -->
<link rel="stylesheet" href="css/slick.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="css/animate.css">
<!-- Jquery-ui CSS -->
<link rel="stylesheet" href="css/jquery-ui.min.css">
<!-- Venobox CSS -->
<link rel="stylesheet" href="css/venobox.css">
<!-- Nice Select CSS -->
<link rel="stylesheet" href="css/nice-select.css">
<!-- Magnific Popup CSS -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Bootstrap V4.1.3 Fremwork CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Helper CSS -->
<link rel="stylesheet" href="css/helper.css">
<!-- Main Style CSS -->
<link rel="stylesheet" href="style.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Modernizr js -->
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Begin Body Wrapper -->
<div class="body-wrapper">
<!-- Begin Header Area -->
<header>
<!-- Begin Header Top Area -->
<div class="header-top">
<div class="container">
<div class="row">
<!-- Begin Header Top Left Area -->
<div class="col-lg-3 col-md-4">
<div class="header-top-left">
<ul class="phone-wrap">
<li><span>Telephone Enquiry:</span><a href="#">(+123) 123 321 345</a></li>
</ul>
</div>
</div>
<!-- Header Top Left Area End Here -->
<!-- Begin Header Top Right Area -->
<div class="col-lg-9 col-md-8">
<div class="header-top-right">
<ul class="ht-menu">
<!-- Begin Setting Area -->
<li>
<div class="ht-setting-trigger"><span>Setting</span></div>
<div class="setting ht-setting">
<ul class="ht-setting-list">
<li><a href="login-register.html">My Account</a></li>
<li><a href="checkout.html">Checkout</a></li>
<li><a href="login-register.html">Sign In</a></li>
</ul>
</div>
</li>
<!-- Setting Area End Here -->
<!-- Begin Currency Area -->
<li>
<span class="currency-selector-wrapper">Currency :</span>
<div class="ht-currency-trigger"><span>USD $</span></div>
<div class="currency ht-currency">
<ul class="ht-setting-list">
<li><a href="#">EUR €</a></li>
<li class="active"><a href="#">USD $</a></li>
</ul>
</div>
</li>
<!-- Currency Area End Here -->
<!-- Begin Language Area -->
<li>
<span class="language-selector-wrapper">Language :</span>
<div class="ht-language-trigger"><span>English</span></div>
<div class="language ht-language">
<ul class="ht-setting-list">
<li class="active"><a href="#"><img src="images/menu/flag-icon/1.jpg" alt="">English</a></li>
<li><a href="#"><img src="images/menu/flag-icon/2.jpg" alt="">Français</a></li>
</ul>
</div>
</li>
<!-- Language Area End Here -->
</ul>
</div>
</div>
<!-- Header Top Right Area End Here -->
</div>
</div>
</div>
<!-- Header Top Area End Here -->
<!-- Begin Header Middle Area -->
<div class="header-middle pl-sm-0 pr-sm-0 pl-xs-0 pr-xs-0">
<div class="container">
<div class="row">
<!-- Begin Header Logo Area -->
<div class="col-lg-3">
<div class="logo pb-sm-30 pb-xs-30">
<a href="index.html">
<img src="images/menu/logo/1.jpg" alt="">
</a>
</div>
</div>
<!-- Header Logo Area End Here -->
<!-- Begin Header Middle Right Area -->
<div class="col-lg-9 pl-0 ml-sm-15 ml-xs-15">
<!-- Begin Header Middle Searchbox Area -->
<form action="#" class="hm-searchbox">
<select class="nice-select select-search-category">
<option value="0">All</option>
<option value="10">Laptops</option>
<option value="17">- - Prime Video</option>
<option value="20">- - - - All Videos</option>
<option value="21">- - - - Blouses</option>
<option value="22">- - - - Evening Dresses</option>
<option value="23">- - - - Summer Dresses</option>
<option value="24">- - - - T-shirts</option>
<option value="25">- - - - Rent or Buy</option>
<option value="26">- - - - Your Watchlist</option>
<option value="27">- - - - Watch Anywhere</option>
<option value="28">- - - - Getting Started</option>
<option value="18">- - - - Computers</option>
<option value="29">- - - - More to Explore</option>
<option value="30">- - - - TV & Video</option>
<option value="31">- - - - Audio & Theater</option>
<option value="32">- - - - Camera, Photo </option>
<option value="33">- - - - Cell Phones</option>
<option value="34">- - - - Headphones</option>
<option value="35">- - - - Video Games</option>
<option value="36">- - - - Wireless Speakers</option>
<option value="19">- - - - Electronics</option>
<option value="37">- - - - Amazon Home</option>
<option value="38">- - - - Kitchen & Dining</option>
<option value="39">- - - - Furniture</option>
<option value="40">- - - - Bed & Bath</option>
<option value="41">- - - - Appliances</option>
<option value="11">TV & Audio</option>
<option value="42">- - SamSung</option>
<option value="45">- - - - Office</option>
<option value="47">- - - - Gaming</option>
<option value="48">- - - - Chromebook</option>
<option value="49">- - - - Refurbished</option>
<option value="50">- - - - Touchscreen</option>
<option value="51">- - - - Ultrabooks</option>
<option value="52">- - - - Blouses</option>
<option value="43">- - Toshiba</option>
<option value="53">- - - - Hard Drives</option>
<option value="54">- - - - Graphic Cards</option>
<option value="55">- - - - Processors (CPU)</option>
<option value="56">- - - - Memory</option>
<option value="57">- - - - Motherboards</option>
<option value="58">- - - - Fans & Cooling</option>
<option value="59">- - - - CD/DVD Drives</option>
<option value="44">- - Sony Bravia</option>
<option value="60">- - - - Sound Cards</option>
<option value="61">- - - - Cases & Towers</option>
<option value="62">- - - - Casual Dresses</option>
<option value="63">- - - - Evening Dresses</option>
<option value="64">- - - - T-shirts</option>
<option value="65">- - - - Tops</option>
<option value="12">Smartphone</option>
<option value="66">- - Camera Accessories</option>
<option value="68">- - - - Octa Core</option>
<option value="69">- - - - Quad Core</option>
<option value="70">- - - - Dual Core</option>
<option value="71">- - - - 7.0 Screen</option>
<option value="72">- - - - 9.0 Screen</option>
<option value="73">- - - - Bags & Cases</option>
<option value="67">- - Camcorders</option>
<option value="74">- - - - Batteries</option>
<option value="75">- - - - Microphones</option>
<option value="76">- - - - Stabilizers</option>
<option value="77">- - - - Video Tapes</option>
<option value="78">- - - - Memory Card Readers</option>
<option value="79">- - - - Tripods</option>
<option value="13">Cameras</option>
<option value="14">headphone</option>
<option value="15">Smartwatch</option>
<option value="16">Accessories</option>
</select>
<input type="text" placeholder="Enter your search key ...">
<button class="li-btn" type="submit"><i class="fa fa-search"></i></button>
</form>
<!-- Header Middle Searchbox Area End Here -->
<!-- Begin Header Middle Right Area -->
<div class="header-middle-right">
<ul class="hm-menu">
<!-- Begin Header Middle Wishlist Area -->
<li class="hm-wishlist">
<a href="wishlist.html">
<span class="cart-item-count wishlist-item-count">0</span>
<i class="fa fa-heart-o"></i>
</a>
</li>
<!-- Header Middle Wishlist Area End Here -->
<!-- Begin Header Mini Cart Area -->
<li class="hm-minicart">
<div class="hm-minicart-trigger">
<span class="item-icon"></span>
<span class="item-text">£80.00
<span class="cart-item-count">2</span>
</span>
</div>
<span></span>
<div class="minicart">
<ul class="minicart-product-list">
<li>
<a href="single-product.html" class="minicart-product-image">
<img src="images/product/small-size/5.jpg" alt="cart products">
</a>
<div class="minicart-product-details">
<h6><a href="single-product.html">Aenean eu tristique</a></h6>
<span>£40 x 1</span>
</div>
<button class="close" title="Remove">
<i class="fa fa-close"></i>
</button>
</li>
<li>
<a href="single-product.html" class="minicart-product-image">
<img src="images/product/small-size/6.jpg" alt="cart products">
</a>
<div class="minicart-product-details">
<h6><a href="single-product.html">Aenean eu tristique</a></h6>
<span>£40 x 1</span>
</div>
<button class="close" title="Remove">
<i class="fa fa-close"></i>
</button>
</li>
</ul>
<p class="minicart-total">SUBTOTAL: <span>£80.00</span></p>
<div class="minicart-button">
<a href="shopping-cart.html" class="li-button li-button-fullwidth li-button-dark">
<span>View Full Cart</span>
</a>
<a href="checkout.html" class="li-button li-button-fullwidth">
<span>Checkout</span>
</a>
</div>
</div>
</li>
<!-- Header Mini Cart Area End Here -->
</ul>
</div>
<!-- Header Middle Right Area End Here -->
</div>
<!-- Header Middle Right Area End Here -->
</div>
</div>
</div>
<!-- Header Middle Area End Here -->
<!-- Begin Header Bottom Area -->
<div class="header-bottom mb-0 header-sticky stick d-none d-lg-block d-xl-block">
<div class="container">
<div class="row">
<div class="col-lg-12">
<!-- Begin Header Bottom Menu Area -->
<div class="hb-menu">
<nav>
<ul>
<li class="dropdown-holder"><a href="index.html">Home</a>
<ul class="hb-dropdown">
<li><a href="index.html">Home One</a></li>
<li><a href="index-2.html">Home Two</a></li>
<li><a href="index-3.html">Home Three</a></li>
<li><a href="index-4.html">Home Four</a></li>
</ul>
</li>
<li class="catmenu-dropdown megamenu-holder"><a href="shop-left-sidebar.html">Shop</a>
<ul class="megamenu hb-megamenu">
<li><a href="shop-left-sidebar.html">Shop Page Layout</a>
<ul>
<li><a href="shop-3-column.html">Shop 3 Column</a></li>
<li><a href="shop-4-column.html">Shop 4 Column</a></li>
<li><a href="shop-left-sidebar.html">Shop Left Sidebar</a></li>
<li><a href="shop-right-sidebar.html">Shop Right Sidebar</a></li>
<li><a href="shop-list.html">Shop List</a></li>
<li><a href="shop-list-left-sidebar.html">Shop List Left Sidebar</a></li>
<li><a href="shop-list-right-sidebar.html">Shop List Right Sidebar</a></li>
</ul>
</li>
<li><a href="single-product-gallery-left.html">Single Product Style</a>
<ul>
<li><a href="single-product-carousel.html">Single Product Carousel</a></li>
<li><a href="single-product-gallery-left.html">Single Product Gallery Left</a></li>
<li><a href="single-product-gallery-right.html">Single Product Gallery Right</a></li>
<li><a href="single-product-tab-style-top.html">Single Product Tab Style Top</a></li>
<li><a href="single-product-tab-style-left.html">Single Product Tab Style Left</a></li>
<li><a href="single-product-tab-style-right.html">Single Product Tab Style Right</a></li>
</ul>
</li>
<li><a href="single-product.html">Single Products</a>
<ul>
<li><a href="single-product.html">Single Product</a></li>
<li><a href="single-product-sale.html">Single Product Sale</a></li>
<li><a href="single-product-group.html">Single Product Group</a></li>
<li><a href="single-product-normal.html">Single Product Normal</a></li>
<li><a href="single-product-affiliate.html">Single Product Affiliate</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown-holder"><a href="blog-left-sidebar.html">Blog</a>
<ul class="hb-dropdown">
<li class="sub-dropdown-holder"><a href="blog-left-sidebar.html">Blog Grid View</a>
<ul class="hb-dropdown hb-sub-dropdown">
<li><a href="blog-2-column.html">Blog 2 Column</a></li>
<li><a href="blog-3-column.html">Blog 3 Column</a></li>
<li><a href="blog-left-sidebar.html">Grid Left Sidebar</a></li>
<li><a href="blog-right-sidebar.html">Grid Right Sidebar</a></li>
</ul>
</li>
<li class="sub-dropdown-holder"><a href="blog-list-left-sidebar.html">Blog List View</a>
<ul class="hb-dropdown hb-sub-dropdown">
<li><a href="blog-list.html">Blog List</a></li>
<li><a href="blog-list-left-sidebar.html">List Left Sidebar</a></li>
<li><a href="blog-list-right-sidebar.html">List Right Sidebar</a></li>
</ul>
</li>
<li class="sub-dropdown-holder"><a href="blog-details-left-sidebar.html">Blog Details</a>
<ul class="hb-dropdown hb-sub-dropdown">
<li><a href="blog-details-left-sidebar.html">Left Sidebar</a></li>
<li><a href="blog-details-right-sidebar.html">Right Sidebar</a></li>
</ul>
</li>
<li class="sub-dropdown-holder"><a href="blog-gallery-format.html">Blog Format</a>
<ul class="hb-dropdown hb-sub-dropdown">
<li><a href="blog-audio-format.html">Blog Audio Format</a></li>
<li><a href="blog-video-format.html">Blog Video Format</a></li>
<li><a href="blog-gallery-format.html">Blog Gallery Format</a></li>
</ul>
</li>
</ul>
</li>
<li class="catmenu-dropdown megamenu-static-holder"><a href="index.html">Pages</a>
<ul class="megamenu hb-megamenu">
<li><a href="blog-left-sidebar.html">Blog Layouts</a>
<ul>
<li><a href="blog-2-column.html">Blog 2 Column</a></li>
<li><a href="blog-3-column.html">Blog 3 Column</a></li>
<li><a href="blog-left-sidebar.html">Grid Left Sidebar</a></li>
<li><a href="blog-right-sidebar.html">Grid Right Sidebar</a></li>
<li><a href="blog-list.html">Blog List</a></li>
<li><a href="blog-list-left-sidebar.html">List Left Sidebar</a></li>
<li><a href="blog-list-right-sidebar.html">List Right Sidebar</a></li>
</ul>
</li>
<li><a href="blog-details-left-sidebar.html">Blog Details Pages</a>
<ul>
<li><a href="blog-details-left-sidebar.html">Left Sidebar</a></li>
<li><a href="blog-details-right-sidebar.html">Right Sidebar</a></li>
<li><a href="blog-audio-format.html">Blog Audio Format</a></li>
<li><a href="blog-video-format.html">Blog Video Format</a></li>
<li><a href="blog-gallery-format.html">Blog Gallery Format</a></li>
</ul>
</li>
<li><a href="index.html">Other Pages</a>
<ul>
<li><a href="login-register.html">My Account</a></li>
<li><a href="checkout.html">Checkout</a></li>
<li><a href="compare.html">Compare</a></li>
<li class="active"><a href="wishlist.html">Wishlist</a></li>
<li><a href="shopping-cart.html">Shopping Cart</a></li>
</ul>
</li>
<li><a href="index.html">Other Pages 2</a>
<ul>
<li><a href="contact.html">Contact</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="404.html">404 Error</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="shop-left-sidebar.html">Smartwatch</a></li>
<li><a href="shop-left-sidebar.html">Accessories</a></li>
</ul>
</nav>
</div>
<!-- Header Bottom Menu Area End Here -->
</div>
</div>
</div>
</div>
<!-- Header Bottom Area End Here -->
<!-- Begin Mobile Menu Area -->
<div class="mobile-menu-area d-lg-none d-xl-none col-12">
<div class="container">
<div class="row">
<div class="mobile-menu">
</div>
</div>
</div>
</div>
<!-- Mobile Menu Area End Here -->
</header>
<!-- Header Area End Here -->
<!-- Begin Li's Breadcrumb Area -->
<div class="breadcrumb-area">
<div class="container">
<div class="breadcrumb-content">
<ul>
<li><a href="index.html">Home</a></li>
<li class="active">Wishlist</li>
</ul>
</div>
</div>
</div>
<!-- Li's Breadcrumb Area End Here -->
<!--Wishlist Area Strat-->
<div class="wishlist-area pt-60 pb-60">
<div class="container">
<div class="row">
<div class="col-12">
<form action="#">
<div class="table-content table-responsive">
<table class="table">
<thead>
<tr>
<th class="li-product-remove">remove</th>
<th class="li-product-thumbnail">images</th>
<th class="cart-product-name">Product</th>
<th class="li-product-price">Unit Price</th>
<th class="li-product-stock-status">Stock Status</th>
<th class="li-product-add-cart">add to cart</th>
</tr>
</thead>
<tbody>
<tr>
<td class="li-product-remove"><a href="#"><i class="fa fa-times"></i></a></td>
<td class="li-product-thumbnail"><a href="#"><img src="images/wishlist-thumb/1.jpg" alt=""></a></td>
<td class="li-product-name"><a href="#">Giro Civilia</a></td>
<td class="li-product-price"><span class="amount">$23.39</span></td>
<td class="li-product-stock-status"><span class="in-stock">in stock</span></td>
<td class="li-product-add-cart"><a href="#">add to cart</a></td>
</tr>
<tr>
<td class="li-product-remove"><a href="#"><i class="fa fa-times"></i></a></td>
<td class="li-product-thumbnail"><a href="#"><img src="images/wishlist-thumb/2.jpg" alt=""></a></td>
<td class="li-product-name"><a href="#">Pro Bike Shoes</a></td>
<td class="li-product-price"><span class="amount">$30.50</span></td>
<td class="li-product-stock-status"><span class="in-stock">in stock</span></td>
<td class="li-product-add-cart"><a href="#">add to cart</a></td>
</tr>
<tr>
<td class="li-product-remove"><a href="#"><i class="fa fa-times"></i></a></td>
<td class="li-product-thumbnail"><a href="#"><img src="images/wishlist-thumb/3.jpg" alt=""></a></td>
<td class="li-product-name"><a href="#">Nero Urban Shoes</a></td>
<td class="li-product-price"><span class="amount">$40.19</span></td>
<td class="li-product-stock-status"><span class="out-stock">out stock</span></td>
<td class="li-product-add-cart"><a href="#">add to cart</a></td>
</tr>
</tbody>
</table>
</div>
</form>
</div>
</div>
</div>
</div>
<!--Wishlist Area End-->
<!-- Begin Footer Area -->
<div class="footer">
<!-- Begin Footer Static Top Area -->
<div class="footer-static-top">
<div class="container">
<!-- Begin Footer Shipping Area -->
<div class="footer-shipping pt-60 pb-25">
<div class="row">
<!-- Begin Li's Shipping Inner Box Area -->
<div class="col-lg-3 col-md-6 col-sm-6 pb-sm-55 pb-xs-55">
<div class="li-shipping-inner-box">
<div class="shipping-icon">
<img src="images/shipping-icon/1.png" alt="Shipping Icon">
</div>
<div class="shipping-text">
<h2>Free Delivery</h2>
<p>And free returns. See checkout for delivery dates.</p>
</div>
</div>
</div>
<!-- Li's Shipping Inner Box Area End Here -->
<!-- Begin Li's Shipping Inner Box Area -->
<div class="col-lg-3 col-md-6 col-sm-6 pb-sm-55 pb-xs-55">
<div class="li-shipping-inner-box">
<div class="shipping-icon">
<img src="images/shipping-icon/2.png" alt="Shipping Icon">
</div>
<div class="shipping-text">
<h2>Safe Payment</h2>
<p>Pay with the world's most popular and secure payment methods.</p>
</div>
</div>
</div>
<!-- Li's Shipping Inner Box Area End Here -->
<!-- Begin Li's Shipping Inner Box Area -->
<div class="col-lg-3 col-md-6 col-sm-6 pb-xs-30">
<div class="li-shipping-inner-box">
<div class="shipping-icon">
<img src="images/shipping-icon/3.png" alt="Shipping Icon">
</div>
<div class="shipping-text">
<h2>Shop with Confidence</h2>
<p>Our Buyer Protection covers your purchasefrom click to delivery.</p>
</div>
</div>
</div>
<!-- Li's Shipping Inner Box Area End Here -->
<!-- Begin Li's Shipping Inner Box Area -->
<div class="col-lg-3 col-md-6 col-sm-6 pb-xs-30">
<div class="li-shipping-inner-box">
<div class="shipping-icon">
<img src="images/shipping-icon/4.png" alt="Shipping Icon">
</div>
<div class="shipping-text">
<h2>24/7 Help Center</h2>
<p>Have a question? Call a Specialist or chat online.</p>
</div>
</div>
</div>
<!-- Li's Shipping Inner Box Area End Here -->
</div>
</div>
<!-- Footer Shipping Area End Here -->
</div>
</div>
<!-- Footer Static Top Area End Here -->
<!-- Begin Footer Static Middle Area -->
<div class="footer-static-middle">
<div class="container">
<div class="footer-logo-wrap pt-50 pb-35">
<div class="row">
<!-- Begin Footer Logo Area -->
<div class="col-lg-4 col-md-6">
<div class="footer-logo">
<img src="images/menu/logo/1.jpg" alt="Footer Logo">
<p class="info">
We are a team of designers and developers that create high quality HTML Template & Woocommerce, Shopify Theme.
</p>
</div>
<ul class="des">
<li>
<span>Address: </span>
6688Princess Road, London, Greater London BAS 23JK, UK
</li>
<li>
<span>Phone: </span>
<a href="#">(+123) 123 321 345</a>
</li>
<li>
<span>Email: </span>
<a href="mailto://info@yourdomain.com">info@yourdomain.com</a>
</li>
</ul>
</div>
<!-- Footer Logo Area End Here -->
<!-- Begin Footer Block Area -->
<div class="col-lg-2 col-md-3 col-sm-6">
<div class="footer-block">
<h3 class="footer-block-title">Product</h3>
<ul>
<li><a href="#">Prices drop</a></li>
<li><a href="#">New products</a></li>
<li><a href="#">Best sales</a></li>
<li><a href="#">Contact us</a></li>
</ul>
</div>
</div>
<!-- Footer Block Area End Here -->
<!-- Begin Footer Block Area -->
<div class="col-lg-2 col-md-3 col-sm-6">
<div class="footer-block">
<h3 class="footer-block-title">Our company</h3>
<ul>
<li><a href="#">Delivery</a></li>
<li><a href="#">Legal Notice</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Contact us</a></li>
</ul>
</div>
</div>
<!-- Footer Block Area End Here -->
<!-- Begin Footer Block Area -->
<div class="col-lg-4">
<div class="footer-block">
<h3 class="footer-block-title">Follow Us</h3>
<ul class="social-link">
<li class="twitter">
<a href="https://twitter.com/" data-toggle="tooltip" target="_blank" title="Twitter">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="rss">
<a href="https://rss.com/" data-toggle="tooltip" target="_blank" title="RSS">
<i class="fa fa-rss"></i>
</a>
</li>
<li class="google-plus">
<a href="https://www.plus.google.com/discover" data-toggle="tooltip" target="_blank" title="Google Plus">
<i class="fa fa-google-plus"></i>
</a>
</li>
<li class="facebook">
<a href="https://www.facebook.com/" data-toggle="tooltip" target="_blank" title="Facebook">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="youtube">
<a href="https://www.youtube.com/" data-toggle="tooltip" target="_blank" title="Youtube">
<i class="fa fa-youtube"></i>
</a>
</li>
<li class="instagram">
<a href="https://www.instagram.com/" data-toggle="tooltip" target="_blank" title="Instagram">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
<!-- Begin Footer Newsletter Area -->
<div class="footer-newsletter">
<h4>Sign up to newsletter</h4>
<form action="#" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="footer-subscribe-form validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<div id="mc-form" class="mc-form subscribe-form form-group" >
<input id="mc-email" type="email" autocomplete="off" placeholder="Enter your email" />
<button class="btn" id="mc-submit">Subscribe</button>
</div>
</div>
</form>
</div>
<!-- Footer Newsletter Area End Here -->
</div>
<!-- Footer Block Area End Here -->
</div>
</div>
</div>
</div>
<!-- Footer Static Middle Area End Here -->
<!-- Begin Footer Static Bottom Area -->
<div class="footer-static-bottom pt-55 pb-55">
<div class="container">
<div class="row">
<div class="col-lg-12">
<!-- Begin Footer Links Area -->
<div class="footer-links">
<ul>
<li><a href="#">Online Shopping</a></li>
<li><a href="#">Promotions</a></li>
<li><a href="#">My Orders</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Customer Service</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Most Populars</a></li>
<li><a href="#">New Arrivals</a></li>
<li><a href="#">Special Products</a></li>
<li><a href="#">Manufacturers</a></li>
<li><a href="#">Our Stores</a></li>
<li><a href="#">Shipping</a></li>
<li><a href="#">Payments</a></li>
<li><a href="#">Warantee</a></li>
<li><a href="#">Refunds</a></li>
<li><a href="#">Checkout</a></li>
<li><a href="#">Discount</a></li>
<li><a href="#">Refunds</a></li>
<li><a href="#">Policy Shipping</a></li>
</ul>
</div>
<!-- Footer Links Area End Here -->
<!-- Begin Footer Payment Area -->
<div class="copyright text-center">
<a href="#">
<img src="images/payment/1.png" alt="">
</a>
</div>
<!-- Footer Payment Area End Here -->
<!-- Begin Copyright Area -->
<div class="copyright text-center pt-25">
<span><a href="https://www.templatespoint.net" target="_blank">Templates Point</a></span>
</div>
<!-- Copyright Area End Here -->
</div>
</div>
</div>
</div>
<!-- Footer Static Bottom Area End Here -->
</div>
<!-- Footer Area End Here -->
<!-- Begin Modal Area -->
<div class="modal fade open-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-close"></i></button>
</div>
<div class="modal-body">
<div class="row">
<!-- Begin Modal Image Area -->
<div class="col-md-5">
<!-- Begin Modal Tab Content Area -->
<div class="tab-content product-details-large myTabContent">
<div class="tab-pane fade show active" id="single-slide1" role="tabpanel" aria-labelledby="single-slide-tab-1">
<!--Single Product Image Start-->
<div class="single-product-img img-full">
<img src="images/product/large-size/1.jpg" alt="">
</div>
<!--Single Product Image End-->
</div>
<div class="tab-pane fade" id="single-slide2" role="tabpanel" aria-labelledby="single-slide-tab-2">
<!--Single Product Image Start-->
<div class="single-product-img img-full">
<img src="images/product/large-size/2.jpg" alt="">
</div>
<!--Single Product Image End-->
</div>
<div class="tab-pane fade" id="single-slide3" role="tabpanel" aria-labelledby="single-slide-tab-3">
<!--Single Product Image Start-->
<div class="single-product-img img-full">
<img src="images/product/large-size/3.jpg" alt="">
</div>
<!--Single Product Image End-->
</div>
<div class="tab-pane fade" id="single-slide4" role="tabpanel" aria-labelledby="single-slide-tab-4">
<!--Single Product Image Start-->
<div class="single-product-img img-full">
<img src="images/product/large-size/4.jpg" alt="">
</div>
<!--Single Product Image End-->
</div>
<div class="tab-pane fade" id="single-slide5" role="tabpanel" aria-labelledby="single-slide-tab-4">
<!--Single Product Image Start-->
<div class="single-product-img img-full">
<img src="images/product/large-size/5.jpg" alt="">
</div>
<!--Single Product Image End-->
</div>
<div class="tab-pane fade" id="single-slide6" role="tabpanel" aria-labelledby="single-slide-tab-4">
<!--Single Product Image Start-->
<div class="single-product-img img-full">
<img src="images/product/large-size/6.jpg" alt="">
</div>
<!--Single Product Image End-->
</div>
</div>
<!-- Modal Tab Content Area End Here -->
<!-- Begin Modal Tab Menu Area -->
<div class="single-product-menu">
<div class="nav single-slide-menu owl-carousel" role="tablist">
<div class="single-tab-menu img-full">
<a class="active" data-toggle="tab" id="single-slide-tab-1" href="#single-slide1"><img src="images/product/small-size/1.jpg" alt=""></a>
</div>
<div class="single-tab-menu img-full">
<a data-toggle="tab" id="single-slide-tab-2" href="#single-slide2"><img src="images/product/small-size/2.jpg" alt=""></a>
</div>
<div class="single-tab-menu img-full">
<a data-toggle="tab" id="single-slide-tab-3" href="#single-slide3"><img src="images/product/small-size/3.jpg" alt=""></a>
</div>
<div class="single-tab-menu img-full">
<a data-toggle="tab" id="single-slide-tab-4" href="#single-slide4"><img src="images/product/small-size/4.jpg" alt=""></a>
</div>
<div class="single-tab-menu img-full">
<a data-toggle="tab" id="single-slide-tab-5" href="#single-slide5"><img src="images/product/small-size/5.jpg" alt=""></a>
</div>
<div class="single-tab-menu img-full">
<a data-toggle="tab" id="single-slide-tab-6" href="#single-slide6"><img src="images/product/small-size/6.jpg" alt=""></a>
</div>
</div>
</div>
<!-- Modal Tab Menu End Here -->
</div>
<!-- Modal Image Area End Here -->
<!-- Begin Modal Content Area -->
<div class="col-md-7">
<div class="modal-product-info">
<h2>Accusantium dolorem1</h2>
<div class="modal-product-price">
<span class="new-price">$46.80</span>
</div>
<div class="cart-description">
<p>Vector graphic, format: svg. Download for personal, private and non-commercial use.</p>
</div>
<div class="quantity">
<input class="input-text qty text" step="1" min="1" max="200" name="quantity" value="1" title="Qty" size="4" type="number">
</div>
</div>
</div>
<!-- Modal Content Area End Here -->
</div>
</div>
</div>
</div>
</div>
<!-- Modal Area End Here -->
</div>
<!-- Body Wrapper End Here -->
<!-- jQuery-V1.12.4 -->
<script src="js/vendor/jquery-1.12.4.min.js"></script>
<!-- Popper js -->
<script src="js/vendor/popper.min.js"></script>
<!-- Bootstrap V4.1.3 Fremwork js -->
<script src="js/bootstrap.min.js"></script>
<!-- Ajax Mail js -->
<script src="js/ajax-mail.js"></script>
<!-- Meanmenu js -->
<script src="js/jquery.meanmenu.min.js"></script>
<!-- Wow.min js -->
<script src="js/wow.min.js"></script>
<!-- Slick Carousel js -->
<script src="js/slick.min.js"></script>
<!-- Owl Carousel-2 js -->
<script src="js/owl.carousel.min.js"></script>
<!-- Magnific popup js -->
<script src="js/jquery.magnific-popup.min.js"></script>
<!-- Isotope js -->
<script src="js/isotope.pkgd.min.js"></script>
<!-- Imagesloaded js -->
<script src="js/imagesloaded.pkgd.min.js"></script>
<!-- Mixitup js -->
<script src="js/jquery.mixitup.min.js"></script>
<!-- Countdown -->
<script src="js/jquery.countdown.min.js"></script>
<!-- Counterup -->
<script src="js/jquery.counterup.min.js"></script>
<!-- Waypoints -->
<script src="js/waypoints.min.js"></script>
<!-- Barrating -->
<script src="js/jquery.barrating.min.js"></script>
<!-- Jquery-ui -->
<script src="js/jquery-ui.min.js"></script>
<!-- Venobox -->
<script src="js/venobox.min.js"></script>
<!-- Nice Select js -->
<script src="js/jquery.nice-select.min.js"></script>
<!-- ScrollUp js -->
<script src="js/scrollUp.min.js"></script>
<!-- Main/Activator js -->
<script src="js/main.js"></script>
</body>
<!-- wishlist31:30-->
</html>