-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
4027 lines (4008 loc) · 284 KB
/
index.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
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="zxx">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Home || Truemart Responsive Html5 Ecommerce Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicons -->
<link rel="shortcut icon" href="img/favicon.ico">
<!-- Fontawesome css -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Ionicons css -->
<link rel="stylesheet" href="css/ionicons.min.css">
<!-- linearicons css -->
<link rel="stylesheet" href="css/linearicons.css">
<!-- Nice select css -->
<link rel="stylesheet" href="css/nice-select.css">
<!-- Jquery fancybox css -->
<link rel="stylesheet" href="css/jquery.fancybox.css">
<!-- Jquery ui price slider css -->
<link rel="stylesheet" href="css/jquery-ui.min.css">
<!-- Meanmenu css -->
<link rel="stylesheet" href="css/meanmenu.min.css">
<!-- Nivo slider css -->
<link rel="stylesheet" href="css/nivo-slider.css">
<!-- Owl carousel css -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<!-- Bootstrap css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Custom css -->
<link rel="stylesheet" href="css/default.css">
<!-- Main css -->
<link rel="stylesheet" href="style.css">
<!-- Responsive css -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Modernizer js -->
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Main Wrapper Start Here -->
<div class="wrapper">
<!-- Banner Popup Start -->
<div class="popup_banner">
<span class="popup_off_banner">×</span>
<div class="banner_popup_area">
<img src="img/banner/pop-banner.jpg" alt="">
</div>
</div>
<!-- Banner Popup End -->
<!-- Newsletter Popup Start -->
<div class="popup_wrapper">
<div class="test">
<span class="popup_off">Close</span>
<div class="subscribe_area text-center mt-60">
<h2>Newsletter</h2>
<p>Subscribe to the Truemart mailing list to receive updates on new arrivals, special offers and other discount information.</p>
<div class="subscribe-form-group">
<form action="#">
<input autocomplete="off" type="text" name="message" id="message" placeholder="Enter your email address">
<button type="submit">subscribe</button>
</form>
</div>
<div class="subscribe-bottom mt-15">
<input type="checkbox" id="newsletter-permission">
<label for="newsletter-permission">Don't show this popup again</label>
</div>
</div>
</div>
</div>
<!-- Newsletter Popup End -->
<!-- Main Header Area Start Here -->
<header>
<!-- Header Top Start Here -->
<div class="header-top-area">
<div class="container">
<!-- Header Top Start -->
<div class="header-top">
<ul>
<li><a href="#">Free Shipping on order over $99</a></li>
<li><a href="#">Shopping Cart</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
<ul>
<li><span>Language</span> <a href="#">English<i class="lnr lnr-chevron-down"></i></a>
<!-- Dropdown Start -->
<ul class="ht-dropdown">
<li><a href="#"><img src="img/header/1.jpg" alt="language-selector">English</a></li>
<li><a href="#"><img src="img/header/2.jpg" alt="language-selector">Francis</a></li>
</ul>
<!-- Dropdown End -->
</li>
<li><span>Currency</span><a href="#"> USD $ <i class="lnr lnr-chevron-down"></i></a>
<!-- Dropdown Start -->
<ul class="ht-dropdown">
<li><a href="#">$ USD</a></li>
<li><a href="#"> € Euro</a></li>
<li><a href="#">£ Pound Sterling</a></li>
</ul>
<!-- Dropdown End -->
</li>
<li><a href="#">My Account<i class="lnr lnr-chevron-down"></i></a>
<!-- Dropdown Start -->
<ul class="ht-dropdown">
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
</ul>
<!-- Dropdown End -->
</li>
</ul>
</div>
<!-- Header Top End -->
</div>
<!-- Container End -->
</div>
<!-- Header Top End Here -->
<!-- Header Middle Start Here -->
<div class="header-middle ptb-15">
<div class="container">
<div class="row align-items-center no-gutters">
<div class="col-lg-3 col-md-12">
<div class="logo mb-all-30">
<a href="index.html"><img src="img/logo/logo.png" alt="logo-image"></a>
</div>
</div>
<!-- Categorie Search Box Start Here -->
<div class="col-lg-5 col-md-8 ml-auto mr-auto col-10">
<div class="categorie-search-box">
<form action="#">
<div class="form-group">
<select class="bootstrap-select" name="poscats">
<option value="0">All categories</option>
<option value="2">Arrivals</option>
<option value="3">Cameras</option>
<option value="4">Cords and Cables</option>
<option value="5">gps accessories</option>
<option value="6">Microphones</option>
<option value="7">Wireless Transmitters</option>
<option value="8">GamePad</option>
<option value="9">cube lifestyle hd</option>
<option value="10">Bags</option>
<option value="11">Bottoms</option>
<option value="12">Shirts</option>
<option value="13">Tailored</option>
<option value="14">Home & Kitchen</option>
<option value="15">Large Appliances</option>
<option value="16">Armchairs</option>
<option value="17">Bunk Bed</option>
<option value="18">Mattress</option>
<option value="19">Sideboard</option>
<option value="20">Small Appliances</option>
<option value="21">Bootees Bags</option>
<option value="22">Jackets</option>
<option value="23">Shelf</option>
<option value="24">Shoes</option>
<option value="25">Phones & Tablets</option>
<option value="26">Tablet</option>
<option value="27">phones</option>
</select>
</div>
<input type="text" name="search" placeholder="I’m shopping for...">
<button><i class="lnr lnr-magnifier"></i></button>
</form>
</div>
</div>
<!-- Categorie Search Box End Here -->
<!-- Cart Box Start Here -->
<div class="col-lg-4 col-md-12">
<div class="cart-box mt-all-30">
<ul class="d-flex justify-content-lg-end justify-content-center align-items-center">
<li><a href="#"><i class="lnr lnr-cart"></i><span class="my-cart"><span class="total-pro">2</span><span>cart</span></span></a>
<ul class="ht-dropdown cart-box-width">
<li>
<!-- Cart Box Start -->
<div class="single-cart-box">
<div class="cart-img">
<a href="#"><img src="img/products/1.jpg" alt="cart-image"></a>
<span class="pro-quantity">1X</span>
</div>
<div class="cart-content">
<h6><a href="product.html">Printed Summer Red </a></h6>
<span class="cart-price">27.45</span>
<span>Size: S</span>
<span>Color: Yellow</span>
</div>
<a class="del-icone" href="#"><i class="ion-close"></i></a>
</div>
<!-- Cart Box End -->
<!-- Cart Box Start -->
<div class="single-cart-box">
<div class="cart-img">
<a href="#"><img src="img/products/2.jpg" alt="cart-image"></a>
<span class="pro-quantity">1X</span>
</div>
<div class="cart-content">
<h6><a href="product.html">Printed Round Neck</a></h6>
<span class="cart-price">45.00</span>
<span>Size: XL</span>
<span>Color: Green</span>
</div>
<a class="del-icone" href="#"><i class="ion-close"></i></a>
</div>
<!-- Cart Box End -->
<!-- Cart Footer Inner Start -->
<div class="cart-footer">
<ul class="price-content">
<li>Subtotal <span>$57.95</span></li>
<li>Shipping <span>$7.00</span></li>
<li>Taxes <span>$0.00</span></li>
<li>Total <span>$64.95</span></li>
</ul>
<div class="cart-actions text-center">
<a class="cart-checkout" href="checkout.html">Checkout</a>
</div>
</div>
<!-- Cart Footer Inner End -->
</li>
</ul>
</li>
<li><a href="#"><i class="lnr lnr-heart"></i><span class="my-cart"><span>Wish</span><span>list (0)</span></span></a>
</li>
<li><a href="#"><i class="lnr lnr-user"></i><span class="my-cart"><span> <strong>Sign in</strong> Or</span><span> Join My Site</span></span></a>
</li>
</ul>
</div>
</div>
<!-- Cart Box End Here -->
</div>
<!-- Row End -->
</div>
<!-- Container End -->
</div>
<!-- Header Middle End Here -->
<!-- Header Bottom Start Here -->
<div class="header-bottom header-sticky">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-3 col-lg-4 col-md-6 vertical-menu d-none d-lg-block">
<span class="categorie-title">Shop by Categories </span>
</div>
<div class="col-xl-9 col-lg-8 col-md-12 ">
<nav class="d-none d-lg-block">
<ul class="header-bottom-list d-flex">
<li class="active"><a href="index.html">home<i class="fa fa-angle-down"></i></a>
<!-- Home Version Dropdown Start -->
<ul class="ht-dropdown">
<li><a href="index.html">Home Version 1</a></li>
<li><a href="index-2.html">Home Version 2</a></li>
<li><a href="index-3.html">Home Version 3</a></li>
<li><a href="index-4.html">Home Version 4</a></li>
</ul>
<!-- Home Version Dropdown End -->
</li>
<li><a href="shop.html">shop<i class="fa fa-angle-down"></i></a>
<!-- Home Version Dropdown Start -->
<ul class="ht-dropdown dropdown-style-two">
<li><a href="product.html">product details</a></li>
<li><a href="compare.html">compare</a></li>
<li><a href="cart.html">cart</a></li>
<li><a href="checkout.html">checkout</a></li>
<li><a href="wishlist.html">wishlist</a></li>
</ul>
<!-- Home Version Dropdown End -->
</li>
<li><a href="blog.html">blog<i class="fa fa-angle-down"></i></a>
<!-- Home Version Dropdown Start -->
<ul class="ht-dropdown dropdown-style-two">
<li><a href="single-blog.html">blog details</a></li>
</ul>
<!-- Home Version Dropdown End -->
</li>
<li><a href="#">pages<i class="fa fa-angle-down"></i></a>
<!-- Home Version Dropdown Start -->
<ul class="ht-dropdown dropdown-style-two">
<li><a href="contact.html">contact us</a></li>
<li><a href="register.html">register</a></li>
<li><a href="login.html">sign in</a></li>
<li><a href="forgot-password.html">forgot password</a></li>
<li><a href="404.html">404</a></li>
</ul>
<!-- Home Version Dropdown End -->
</li>
<li><a href="about.html">About us</a></li>
<li><a href="contact.html">contact us</a></li>
</ul>
</nav>
<div class="mobile-menu d-block d-lg-none">
<nav>
<ul>
<li><a href="index.html">home</a>
<!-- Home Version Dropdown Start -->
<ul>
<li><a href="index.html">Home Version 1</a></li>
<li><a href="index-2.html">Home Version 2</a></li>
<li><a href="index-3.html">Home Version 3</a></li>
<li><a href="index-4.html">Home Version 4</a></li>
</ul>
<!-- Home Version Dropdown End -->
</li>
<li><a href="shop.html">shop</a>
<!-- Mobile Menu Dropdown Start -->
<ul>
<li><a href="product.html">product details</a></li>
<li><a href="compare.html">compare</a></li>
<li><a href="cart.html">cart</a></li>
<li><a href="checkout.html">checkout</a></li>
<li><a href="wishlist.html">wishlist</a></li>
</ul>
<!-- Mobile Menu Dropdown End -->
</li>
<li><a href="blog.html">Blog</a>
<!-- Mobile Menu Dropdown Start -->
<ul>
<li><a href="single-blog.html">blog details</a></li>
</ul>
<!-- Mobile Menu Dropdown End -->
</li>
<li><a href="#">pages</a>
<!-- Mobile Menu Dropdown Start -->
<ul>
<li><a href="register.html">register</a></li>
<li><a href="login.html">sign in</a></li>
<li><a href="forgot-password.html">forgot password</a></li>
<li><a href="404.html">404</a></li>
</ul>
<!-- Mobile Menu Dropdown End -->
</li>
<li><a href="about.html">about us</a></li>
<li><a href="contact.html">contact us</a></li>
</ul>
</nav>
</div>
</div>
</div>
<!-- Row End -->
</div>
<!-- Container End -->
</div>
<!-- Header Bottom End Here -->
<!-- Mobile Vertical Menu Start Here -->
<div class="container d-block d-lg-none">
<div class="vertical-menu mt-30">
<span class="categorie-title mobile-categorei-menu">Shop by Categories</span>
<nav>
<div id="cate-mobile-toggle" class="category-menu sidebar-menu sidbar-style mobile-categorei-menu-list menu-hidden ">
<ul>
<li class="has-sub"><a href="#">Automotive & Motorcycle </a>
<ul class="category-sub">
<li class="has-sub"><a href="shop.html">Office chair</a>
<ul class="category-sub">
<li><a href="shop.html">Bibendum Cursus</a></li>
<li><a href="shop.html">Dignissim Turpis</a></li>
<li><a href="shop.html">Dining room</a></li>
<li><a href="shop.html">Dining room</a></li>
</ul>
</li>
<li class="has-sub"><a href="shop.html">Purus Lacus</a>
<ul class="category-sub">
<li><a href="shop.html">Magna Pellentesq</a></li>
<li><a href="shop.html">Molestie Tortor</a></li>
<li><a href="shop.html">Vehicula Element</a></li>
<li><a href="shop.html">Sagittis Blandit</a></li>
</ul>
</li>
<li><a href="shop.html">gps accessories</a></li>
<li><a href="shop.html">Microphones</a></li>
<li><a href="shop.html">Wireless Transmitters</a></li>
</ul>
<!-- category submenu end-->
</li>
<li class="has-sub"><a href="#">Sports & Outdoors</a>
<ul class="category-sub">
<li class="menu-tile">Cameras</li>
<li><a href="shop.html">Cords and Cables</a></li>
<li><a href="shop.html">gps accessories</a></li>
<li><a href="shop.html">Microphones</a></li>
<li><a href="shop.html">Wireless Transmitters</a></li>
</ul>
<!-- category submenu end-->
</li>
<li class="has-sub"><a href="#">Home & Kitchen</a>
<ul class="category-sub">
<li><a href="shop.html">kithen one</a></li>
<li><a href="shop.html">kithen two</a></li>
<li><a href="shop.html">kithen three</a></li>
<li><a href="shop.html">kithen four</a></li>
</ul>
<!-- category submenu end-->
</li>
<li class="has-sub"><a href="#">Phones & Tablets</a>
<ul class="category-sub">
<li><a href="shop.html">phone one</a></li>
<li><a href="shop.html">Tablet two</a></li>
<li><a href="shop.html">Tablet three</a></li>
<li><a href="shop.html">phone four</a></li>
</ul>
<!-- category submenu end-->
</li>
<li class="has-sub"><a href="#">TV & Video</a>
<ul class="category-sub">
<li><a href="shop.html">smart tv</a></li>
<li><a href="shop.html">real video</a></li>
<li><a href="shop.html">Microphones</a></li>
<li><a href="shop.html">Wireless Transmitters</a></li>
</ul>
<!-- category submenu end-->
</li>
<li><a href="#">Beauty</a> </li>
<li><a href="#">Sport & tourisim</a></li>
<li><a href="#">Meat & Seafood</a></li>
</ul>
</div>
<!-- category-menu-end -->
</nav>
</div>
</div>
<!-- Mobile Vertical Menu Start End -->
</header>
<!-- Main Header Area End Here -->
<!-- Categorie Menu & Slider Area Start Here -->
<div class="main-page-banner pb-50 off-white-bg">
<div class="container">
<div class="row">
<!-- Vertical Menu Start Here -->
<div class="col-xl-3 col-lg-4 d-none d-lg-block">
<div class="vertical-menu mb-all-30">
<nav>
<ul class="vertical-menu-list">
<li class=""><a href="shop.html"><span><img src="img/vertical-menu/1.png" alt="menu-icon"></span>Automotive & Motorcycle<i class="fa fa-angle-right" aria-hidden="true"></i></a>
<ul class="ht-dropdown mega-child">
<li><a href="shop.html">Office chair <i class="fa fa-angle-right"></i></a>
<!-- category submenu end-->
<ul class="ht-dropdown mega-child">
<li><a href="shop.html">Bibendum Cursus</a></li>
<li><a href="shop.html">Dignissim Turpis</a></li>
<li><a href="shop.html">Dining room</a></li>
<li><a href="shop.html">Dining room</a></li>
</ul>
<!-- category submenu end-->
</li>
<li><a href="shop.html">Purus Lacus <i class="fa fa-angle-right"></i></a>
<!-- category submenu end-->
<ul class="ht-dropdown mega-child">
<li><a href="shop.html">Magna Pellentesq</a></li>
<li><a href="shop.html">Molestie Tortor</a></li>
<li><a href="shop.html">Vehicula Element</a></li>
<li><a href="shop.html">Sagittis Blandit</a></li>
</ul>
<!-- category submenu end-->
</li>
<li><a href="shop.html">Sagittis Eget</a></li>
<li><a href="shop.html">Sagittis Eget</a></li>
</ul>
<!-- category submenu end-->
</li>
<li><a href="shop.html"><span><img src="img/vertical-menu/3.png" alt="menu-icon"></span>Sports & Outdoors<i class="fa fa-angle-right" aria-hidden="true"></i></a>
<!-- Vertical Mega-Menu Start -->
<ul class="ht-dropdown megamenu first-megamenu">
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Cameras</li>
<li><a href="shop.html">Cords and Cables</a></li>
<li><a href="shop.html">gps accessories</a></li>
<li><a href="shop.html">Microphones</a></li>
<li><a href="shop.html">Wireless Transmitters</a></li>
</ul>
<ul>
<li class="menu-tile">GamePad</li>
<li><a href="shop.html">real game hd</a></li>
<li><a href="shop.html">fighting game</a></li>
<li><a href="shop.html">racing pad</a></li>
<li><a href="shop.html">puzzle pad</a></li>
</ul>
</li>
<!-- Single Column End -->
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Digital Cameras</li>
<li><a href="shop.html">Camera one</a></li>
<li><a href="shop.html">Camera two</a></li>
<li><a href="shop.html">Camera three</a></li>
<li><a href="shop.html">Camera four</a></li>
</ul>
<ul>
<li class="menu-tile">Virtual Reality</li>
<li><a href="shop.html">Reality one</a></li>
<li><a href="shop.html">Reality two</a></li>
<li><a href="shop.html">Reality three</a></li>
<li><a href="shop.html">Reality four</a></li>
</ul>
</li>
<!-- Single Column End -->
<!-- Single Megamenu Image Start -->
<li class="megamenu-img">
<a href="shop.html"><img src="img/vertical-menu/sub-img1.jpg" alt="menu-image"></a>
<a href="shop.html"><img src="img/vertical-menu/sub-img2.jpg" alt="menu-image"></a>
<a href="shop.html"><img src="img/vertical-menu/sub-img3.jpg" alt="menu-image"></a>
</li>
<!-- Single Megamenu Image End -->
</ul>
<!-- Vertical Mega-Menu End -->
</li>
<li><a href="shop.html"><span><img src="img/vertical-menu/6.png" alt="menu-icon"></span>Fashion<i class="fa fa-angle-right" aria-hidden="true"></i></a>
<!-- Vertical Mega-Menu Start -->
<ul class="ht-dropdown megamenu megamenu-two">
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Men’s Fashion</li>
<li><a href="shop.html">Blazers</a></li>
<li><a href="shop.html">Boots</a></li>
<li><a href="shop.html">pants</a></li>
<li><a href="shop.html">Tops & Tees</a></li>
</ul>
</li>
<!-- Single Column End -->
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Women’s Fashion</li>
<li><a href="shop.html">Bags</a></li>
<li><a href="shop.html">Bottoms</a></li>
<li><a href="shop.html">Shirts</a></li>
<li><a href="shop.html">Tailored</a></li>
</ul>
</li>
<!-- Single Column End -->
</ul>
<!-- Vertical Mega-Menu End -->
</li>
<li><a href="shop.html"><span><img src="img/vertical-menu/7.png" alt="menu-icon"></span>Home & Kitchen<i class="fa fa-angle-right" aria-hidden="true"></i></a>
<!-- Vertical Mega-Menu Start -->
<ul class="ht-dropdown megamenu megamenu-two">
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Large Appliances</li>
<li><a href="shop.html">Armchairs</a></li>
<li><a href="shop.html">Bunk Bed</a></li>
<li><a href="shop.html">Mattress</a></li>
<li><a href="shop.html">Sideboard</a></li>
</ul>
</li>
<!-- Single Column End -->
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Small Appliances</li>
<li><a href="shop.html">Bootees Bags</a></li>
<li><a href="shop.html">Jackets</a></li>
<li><a href="shop.html">Shelf</a></li>
<li><a href="shop.html">Shoes</a></li>
</ul>
</li>
<!-- Single Column End -->
</ul>
<!-- Vertical Mega-Menu End -->
</li>
<li><a href="shop.html"><span><img src="img/vertical-menu/4.png" alt="menu-icon"></span>Phones & Tablets<i class="fa fa-angle-right" aria-hidden="true"></i>
</a>
<!-- Vertical Mega-Menu Start -->
<ul class="ht-dropdown megamenu megamenu-two">
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Tablet</li>
<li><a href="shop.html">tablet one</a></li>
<li><a href="shop.html">tablet two</a></li>
<li><a href="shop.html">tablet three</a></li>
<li><a href="shop.html">tablet four</a></li>
</ul>
</li>
<!-- Single Column End -->
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Smartphone</li>
<li><a href="shop.html">phone one</a></li>
<li><a href="shop.html">phone two</a></li>
<li><a href="shop.html">phone three</a></li>
<li><a href="shop.html">phone four</a></li>
</ul>
</li>
<!-- Single Column End -->
</ul>
<!-- Vertical Mega-Menu End -->
</li>
<li><a href="shop.html"><span><img src="img/vertical-menu/6.png" alt="menu-icon"></span>TV & Video<i class="fa fa-angle-right" aria-hidden="true"></i></a>
<!-- Vertical Mega-Menu Start -->
<ul class="ht-dropdown megamenu megamenu-two">
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Gaming Desktops</li>
<li><a href="shop.html">Alpha Desktop</a></li>
<li><a href="shop.html">rober Desktop</a></li>
<li><a href="shop.html">Ultra Desktop </a></li>
<li><a href="shop.html">beta desktop</a></li>
</ul>
</li>
<!-- Single Column End -->
<!-- Single Column Start -->
<li class="single-megamenu">
<ul>
<li class="menu-tile">Women’s Fashion</li>
<li><a href="shop.html">3D-Capable</a></li>
<li><a href="shop.html">Clearance</a></li>
<li><a href="shop.html">Free Shipping Eligible</a></li>
<li><a href="shop.html">On Sale</a></li>
</ul>
</li>
<!-- Single Column End -->
</ul>
<!-- Vertical Mega-Menu End -->
</li>
<li><a href="shop.html"><span><img src="img/vertical-menu/5.png" alt="menu-icon"></span>Beauty</a>
</li>
<li><a href="shop.html"><span><img src="img/vertical-menu/8.png" alt="menu-icon"></span>Fruits & Veggies</a></li>
<li><a href="shop.html"><span><img src="img/vertical-menu/9.png" alt="menu-icon"></span>Computer & Laptop</a></li>
<li><a href="shop.html"><span><img src="img/vertical-menu/10.png" alt="menu-icon"></span>Meat & Seafood</a></li>
<!-- More Categoies Start -->
<li id="cate-toggle" class="category-menu v-cat-menu">
<ul>
<li class="has-sub"><a href="#">More Categories</a>
<ul class="category-sub">
<li><a href="shop.html"><span><img src="img/vertical-menu/11.png" alt="menu-icon"></span>Accessories</a></li>
</ul>
</li>
</ul>
</li>
<!-- More Categoies End -->
</ul>
</nav>
</div>
</div>
<!-- Vertical Menu End Here -->
<!-- Slider Area Start Here -->
<div class="col-xl-9 col-lg-8 slider_box">
<div class="slider-wrapper theme-default">
<!-- Slider Background Image Start-->
<div id="slider" class="nivoSlider">
<a href="shop.html"><img src="img/slider/1.jpg" data-thumb="img/slider/1.jpg" alt="" title="#htmlcaption" /></a>
<a href="shop.html"><img src="img/slider/2.jpg" data-thumb="img/slider/2.jpg" alt="" title="#htmlcaption2" /></a>
</div>
<!-- Slider Background Image Start-->
</div>
</div>
<!-- Slider Area End Here -->
</div>
<!-- Row End -->
</div>
<!-- Container End -->
</div>
<!-- Categorie Menu & Slider Area End Here -->
<!-- Brand Banner Area Start Here -->
<div class="image-banner pb-50 off-white-bg">
<div class="container">
<div class="col-img">
<a href="#"><img src="img/banner/h1-banner.jpg" alt="image banner"></a>
</div>
</div>
<!-- Container End -->
</div>
<!-- Brand Banner Area End Here -->
<!-- Hot Deal Products Start Here -->
<div class="hot-deal-products off-white-bg pb-90 pb-sm-50">
<div class="container">
<!-- Product Title Start -->
<div class="post-title pb-30">
<h2>hot deals</h2>
</div>
<!-- Product Title End -->
<!-- Hot Deal Product Activation Start -->
<div class="hot-deal-active owl-carousel">
<!-- Single Product Start -->
<div class="single-product">
<!-- Product Image Start -->
<div class="pro-img">
<a href="product.html">
<img class="primary-img" src="img/products/1.jpg" alt="single-product">
<img class="secondary-img" src="img/products/7.jpg" alt="single-product">
</a>
<div class="countdown" data-countdown="2020/03/01"></div>
<a href="#" class="quick_view" data-toggle="modal" data-target="#myModal" title="Quick View"><i class="lnr lnr-magnifier"></i></a>
</div>
<!-- Product Image End -->
<!-- Product Content Start -->
<div class="pro-content">
<div class="pro-info">
<h4><a href="product.html">Poly and Bark Vortex Side</a></h4>
<p><span class="price">$84.45</span><del class="prev-price">$105.50</del></p>
<div class="label-product l_sale">20<span class="symbol-percent">%</span></div>
</div>
<div class="pro-actions">
<div class="actions-primary">
<a href="cart.html" title="Add to Cart"> + Add To Cart</a>
</div>
<div class="actions-secondary">
<a href="compare.html" title="Compare"><i class="lnr lnr-sync"></i> <span>Add To Compare</span></a>
<a href="wishlist.html" title="WishList"><i class="lnr lnr-heart"></i> <span>Add to WishList</span></a>
</div>
</div>
</div>
<!-- Product Content End -->
</div>
<!-- Single Product End -->
<!-- Single Product Start -->
<div class="single-product">
<!-- Product Image Start -->
<div class="pro-img">
<a href="product.html">
<img class="primary-img" src="img/products/24.jpg" alt="single-product">
<img class="secondary-img" src="img/products/25.jpg" alt="single-product">
</a>
<div class="countdown" data-countdown="2020/03/01"></div>
<a href="#" class="quick_view" data-toggle="modal" data-target="#myModal" title="Quick View"><i class="lnr lnr-magnifier"></i></a>
</div>
<!-- Product Image End -->
<!-- Product Content Start -->
<div class="pro-content">
<div class="pro-info">
<h4><a href="product.html">Light Inverted Pendant Quick</a></h4>
<p><span class="price">$84.45</span><del class="prev-price">$105.50</del></p>
<div class="label-product l_sale">20<span class="symbol-percent">%</span></div>
</div>
<div class="pro-actions">
<div class="actions-primary">
<a href="cart.html" title="Add to Cart">+ Add To Cart</a>
</div>
<div class="actions-secondary">
<a href="compare.html" title="Compare"><i class="lnr lnr-sync"></i> <span>Add To Compare</span></a>
<a href="wishlist.html" title="WishList"><i class="lnr lnr-heart"></i> <span>Add to WishList</span></a>
</div>
</div>
</div>
<!-- Product Content End -->
</div>
<!-- Single Product End -->
<!-- Single Product Start -->
<div class="single-product">
<!-- Product Image Start -->
<div class="pro-img">
<a href="product.html">
<img class="primary-img" src="img/products/42.jpg" alt="single-product">
<img class="secondary-img" src="img/products/43.jpg" alt="single-product">
</a>
<div class="countdown" data-countdown="2020/03/01"></div>
<a href="#" class="quick_view" data-toggle="modal" data-target="#myModal" title="Quick View"><i class="lnr lnr-magnifier"></i></a>
</div>
<!-- Product Image End -->
<!-- Product Content Start -->
<div class="pro-content">
<div class="pro-info">
<h4><a href="product.html">Terra Xpress HE Cooking </a></h4>
<p><span class="price">$84.45</span><del class="prev-price">$105.50</del></p>
<div class="label-product l_sale">15<span class="symbol-percent">%</span></div>
</div>
<div class="pro-actions">
<div class="actions-primary">
<a href="cart.html" title="Add to Cart">+ Add To Cart</a>
</div>
<div class="actions-secondary">
<a href="compare.html" title="Compare"><i class="lnr lnr-sync"></i> <span>Add To Compare</span></a>
<a href="wishlist.html" title="WishList"><i class="lnr lnr-heart"></i> <span>Add to WishList</span></a>
</div>
</div>
</div>
<!-- Product Content End -->
<span class="sticker-new">new</span>
</div>
<!-- Single Product End -->
<!-- Single Product Start -->
<div class="single-product">
<!-- Product Image Start -->
<div class="pro-img">
<a href="product.html">
<img class="primary-img" src="img/products/30.jpg" alt="single-product">
<img class="secondary-img" src="img/products/31.jpg" alt="single-product">
</a>
<div class="countdown" data-countdown="2020/03/01"></div>
<a href="#" class="quick_view" data-toggle="modal" data-target="#myModal" title="Quick View"><i class="lnr lnr-magnifier"></i></a>
</div>
<!-- Product Image End -->
<!-- Product Content Start -->
<div class="pro-content">
<div class="pro-info">
<h4><a href="product.html">Calandiva Wrapped 12cm</a></h4>
<p><span class="price">$84.45</span><del class="prev-price">$105.50</del></p>
<div class="label-product l_sale">20<span class="symbol-percent">%</span></div>
</div>
<div class="pro-actions">
<div class="actions-primary">
<a href="cart.html" title="Add to Cart">+ Add To Cart</a>
</div>
<div class="actions-secondary">
<a href="compare.html" title="Compare"><i class="lnr lnr-sync"></i> <span>Add To Compare</span></a>
<a href="wishlist.html" title="WishList"><i class="lnr lnr-heart"></i> <span>Add to WishList</span></a>
</div>
</div>
</div>
<!-- Product Content End -->
</div>
<!-- Single Product End -->
<!-- Single Product Start -->
<div class="single-product">
<!-- Product Image Start -->
<div class="pro-img">
<a href="product.html">
<img class="primary-img" src="img/products/8.jpg" alt="single-product">
<img class="secondary-img" src="img/products/9.jpg" alt="single-product">
</a>
<div class="countdown" data-countdown="2020/03/01"></div>
<a href="#" class="quick_view" data-toggle="modal" data-target="#myModal" title="Quick View"><i class="lnr lnr-magnifier"></i></a>
</div>
<!-- Product Image End -->
<!-- Product Content Start -->
<div class="pro-content">
<div class="pro-info">
<h4><a href="product.html">Gpoly and Bark Eames Styl...</a></h4>
<p><span class="price">$84.45</span><del class="prev-price">$105.50</del></p>
<div class="label-product l_sale">10<span class="symbol-percent">%</span></div>
</div>
<div class="pro-actions">
<div class="actions-primary">
<a href="cart.html" title="Add to Cart">+ Add To Cart</a>
</div>
<div class="actions-secondary">
<a href="compare.html" title="Compare"><i class="lnr lnr-sync"></i> <span>Add To Compare</span></a>
<a href="wishlist.html" title="WishList"><i class="lnr lnr-heart"></i> <span>Add to WishList</span></a>
</div>
</div>
</div>
<!-- Product Content End -->
<span class="sticker-new">new</span>
</div>
<!-- Single Product End -->
<!-- Single Product Start -->
<div class="single-product">
<!-- Product Image Start -->
<div class="pro-img">
<a href="product.html">
<img class="primary-img" src="img/products/10.jpg" alt="single-product">
<img class="secondary-img" src="img/products/11.jpg" alt="single-product">
</a>
<div class="countdown" data-countdown="2020/03/01"></div>
<a href="#" class="quick_view" data-toggle="modal" data-target="#myModal" title="Quick View"><i class="lnr lnr-magnifier"></i></a>
</div>
<!-- Product Image End -->
<!-- Product Content Start -->
<div class="pro-content">
<div class="pro-info">
<h4><a href="product.html">Poly and Bark Vortex Side</a></h4>
<p><span class="price">$84.45</span><del class="prev-price">$105.50</del></p>
<div class="label-product l_sale">37<span class="symbol-percent">%</span></div>
</div>
<div class="pro-actions">
<div class="actions-primary">
<a href="cart.html" title="Add to Cart">+ Add To Cart</a>
</div>
<div class="actions-secondary">
<a href="compare.html" title="Compare"><i class="lnr lnr-sync"></i> <span>Add To Compare</span></a>
<a href="wishlist.html" title="WishList"><i class="lnr lnr-heart"></i> <span>Add to WishList</span></a>
</div>
</div>
</div>
<!-- Product Content End -->
<span class="sticker-new">new</span>
</div>
<!-- Single Product End -->
</div>
<!-- Hot Deal Product Active End -->
</div>
<!-- Container End -->
</div>
<!-- Hot Deal Products End Here -->
<!-- Hot Deal Products End Here -->
<!-- Big Banner Start Here -->
<div class="big-banner mt-100 pb-85 mt-sm-60 pb-sm-45">
<div class="container banner-2">
<div class="banner-box">
<div class="col-img">
<a href="#"><img src="img/banner/banner3-1.jpg" alt="banner 3"></a>
</div>
<div class="col-img">
<a href="#"><img src="img/banner/banner3-2.jpg" alt="banner 3"></a>
</div>
</div>
<div class="banner-box">
<div class="col-img">
<a href="#"><img src="img/banner/banner3-3.jpg" alt="banner 3"></a>
</div>
</div>
<div class="banner-box">
<div class="col-img">
<a href="#"><img src="img/banner/banner3-4.jpg" alt="banner 3"></a>
</div>
<div class="col-img">
<a href="#"><img src="img/banner/banner3-5.jpg" alt="banner 3"></a>
</div>
</div>
<div class="banner-box">
<div class="col-img">
<a href="#"><img src="img/banner/banner3-6.jpg" alt="banner 3"></a>
</div>
</div>
<div class="banner-box">
<div class="col-img">
<a href="#"><img src="img/banner/banner3-7.jpg" alt="banner 3"></a>
</div>
<div class="col-img">
<a href="#"><img src="img/banner/banner3-8.jpg" alt="banner 3"></a>
</div>
</div>
</div>
<!-- Container End -->
</div>
<!-- Big Banner End Here -->
<!-- Arrivals Products Area Start Here -->
<div class="arrivals-product pb-85 pb-sm-45">
<div class="container">
<div class="main-product-tab-area">
<div class="tab-menu mb-25">
<div class="section-ttitle">
<h2>New Arrivals</h2>
</div>
<!-- Nav tabs -->
<ul class="nav tabs-area" role="tablist">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#fshion">Fashion</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#beauty">Beauty</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#electronics">Sport/Outdoor</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#kids">Living</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#beauty">Food</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#kids">Baby/Kids</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#electronics">Electronics </a>
</li>
</ul>
</div>
<!-- Tab Contetn Start -->
<div class="tab-content">
<div id="fshion" class="tab-pane fade">
<!-- Arrivals Product Activation Start Here -->
<div class="electronics-pro-active owl-carousel">
<!-- Double Product Start -->
<div class="double-product">
<!-- Single Product Start -->
<div class="single-product">
<!-- Product Image Start -->
<div class="pro-img">
<a href="product.html">
<img class="primary-img" src="img/products/1.jpg" alt="single-product">
<img class="secondary-img" src="img/products/2.jpg" alt="single-product">
</a>
<a href="#" class="quick_view" data-toggle="modal" data-target="#myModal" title="Quick View"><i class="lnr lnr-magnifier"></i></a>
</div>
<!-- Product Image End -->
<!-- Product Content Start -->
<div class="pro-content">
<div class="pro-info">
<h4><a href="product.html">Work Lamp Silver Proin</a></h4>
<p><span class="price">$320.45</span><del class="prev-price">$400.50</del></p>
<div class="label-product l_sale">30<span class="symbol-percent">%</span></div>
</div>
<div class="pro-actions">
<div class="actions-primary">
<a href="cart.html" title="Add to Cart"> + Add To Cart</a>
</div>
<div class="actions-secondary">
<a href="compare.html" title="Compare"><i class="lnr lnr-sync"></i> <span>Add To Compare</span></a>
<a href="wishlist.html" title="WishList"><i class="lnr lnr-heart"></i> <span>Add to WishList</span></a>
</div>
</div>