-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage5.html
1170 lines (1163 loc) · 51.1 KB
/
homepage5.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 lang="en">
<head>
<!-- set the encoding of your site -->
<meta charset="utf-8">
<!-- set the viewport width and initial-scale on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Schön. | eCommerce HTML5 Template</title>
<!-- include the site stylesheet -->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,200italic,300,300italic,400italic,600,600italic,700,700italic,900,900italic%7cMontserrat:400,700%7cOxygen:400,300,700' rel='stylesheet' type='text/css'>
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/animate.css">
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/icon-fonts.css">
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/main.css">
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<!-- main container of all the page elements -->
<div id="wrapper">
<!-- Page Loader -->
<div id="pre-loader" class="loader-container">
<div class="loader">
<img src="images/svg/rings.svg" alt="loader">
</div>
</div>
<!-- W1 start here -->
<div class="w1">
<!-- mt header style5 start here -->
<header class="style5" id="mt-header">
<!-- mt bottom bar start here -->
<div class="mt-bottom-bar">
<div class="container">
<div class="row">
<div class="col-xs-12">
<!-- mt logo start here -->
<div class="mt-logo"><a href="#"><img alt="schon" src="images/mt-logo.png"></a></div>
<span class="tel"> +1 (555) 333 22 11</span>
<div class="mt-sh-cart2">
<span class="icon-handbag"></span>
<span>$75.00</span>
</div>
<!-- mt nav box start here -->
<div class="mt-nav-box">
<ul class="mt-top-list hidden-sm hidden-xs">
<li><a href="#">My Account</a></li>
<li><a href="#">Checkout</a></li>
<li><a href="#">Wishlist</a></li>
</ul>
<!-- mt holder start here -->
<div class="mt-holder">
<!-- navigation start here -->
<nav id="nav">
<ul>
<li>
<a class="drop-link" href="homepage1.html">HOME <i class="fa fa-angle-down hidden-lg hidden-md" aria-hidden="true"></i></a>
<div class="s-drop">
<ul>
<li><a href="homepage1.html">Homepage1</a></li>
<li><a href="homepage2.html">homepage2</a></li>
<li><a href="homepage3.html">homepage3</a></li>
<li><a href="homepage4.html">homepage4</a></li>
<li><a href="homepage5.html">Homepage5</a></li>
<li><a href="homepage6.html">homepage6</a></li>
<li><a href="homepage7.html">homepage7</a></li>
<li><a href="homepage8.html">homepage8</a></li>
<li><a href="homepage9.html">homepage9</a></li>
</ul>
</div>
</li>
<li class="drop">
<a href="product-grid-view.html">PRODUCTS <i class="fa fa-angle-down" aria-hidden="true"></i></a>
<!-- mt dropmenu start here -->
<div class="mt-dropmenu text-left">
<!-- mt frame start here -->
<div class="mt-frame">
<!-- mt f box start here -->
<div class="mt-f-box">
<!-- mt col3 start here -->
<div class="mt-col-3">
<div class="sub-dropcont">
<strong class="title"><a href="product-grid-view.html" class="mt-subopener">PRODUCTS</a></strong>
<div class="sub-drop">
<ul>
<li><a href="product-grid-view.html">Product Grid View</a></li>
<li><a href="product-list-view.html">Product List View</a></li>
<li><a href="product-detail.html">Product Detail</a></li>
</ul>
</div>
</div>
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">404 Pages</a></strong>
<div class="sub-drop">
<ul>
<li><a href="404-page.html">404 Page</a></li>
<li><a href="404-page2.html">404 Page2</a></li>
</ul>
</div>
</div>
</div>
<!-- mt col3 end here -->
<!-- mt col3 start here -->
<div class="mt-col-3">
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">About US</a></strong>
<div class="sub-drop">
<ul>
<li><a href="about-us.html">About</a></li>
</ul>
</div>
</div>
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">Contact US</a></strong>
<div class="sub-drop">
<ul>
<li><a href="contact-us.html">Contact</a></li>
<li><a href="contact-us2.html">Contact 2</a></li>
</ul>
</div>
</div>
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">Coming Soon</a></strong>
<div class="sub-drop">
<ul>
<li><a href="coming-soon.html">Coming Soon</a></li>
<li><a href="coming-soon2.html">Coming Soon2</a></li>
</ul>
</div>
</div>
</div>
<!-- mt col3 end here -->
<!-- mt col3 start here -->
<div class="mt-col-3">
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">KITCHEN FURNITURE</a></strong>
<div class="sub-drop">
<ul>
<li><a href="#">Kitchen Taps</a></li>
<li><a href="#">Breakfast time</a></li>
<li><a href="#">Cooking</a></li>
<li><a href="#">Food Storage Boxes</a></li>
<li><a href="#">Spice Jars</a></li>
<li><a href="#">Napskins</a></li>
<li><a href="#">Oven Gloves</a></li>
<li><a href="#">Placemats</a></li>
<li><a href="#">Cooking</a></li>
<li><a href="#">Food Storage Boxes</a></li>
<li><a href="#">Spice Jars</a></li>
</ul>
</div>
</div>
</div>
<!-- mt col3 end here -->
<!-- mt col3 start here -->
<div class="mt-col-3 promo">
<div class="mt-promobox">
<a href="#"><img src="http://placehold.it/295x320" alt="promo banner" class="img-responsive"></a>
</div>
</div>
<!-- mt col3 end here -->
</div>
<!-- mt f box end here -->
</div>
<!-- mt frame end here -->
</div>
<!-- mt dropmenu end here -->
<span class="mt-mdropover"></span>
</li>
<li>
<a class="drop-link" href="blog-right-sidebar.html">Blog <i class="fa fa-angle-down hidden-lg hidden-md" aria-hidden="true"></i></a>
<div class="s-drop">
<ul>
<li><a href="blog-fullwidth-page.html">Blog Fullwidth Page</a></li>
<li><a href="blog-right-sidebar2.html">blog right sidebar2</a></li>
<li><a href="blog-postlist-3-masonry.html">blog postlist masonry</a></li>
<li><a href="blog-post-detail-sidebar.html">blog post detail sidebar</a></li>
<li><a href="blog-post-detail-full-width.html">blog post detail full width</a></li>
</ul>
</div>
</li>
<li class="drop">
<a href="#">PAGES <i class="fa fa-angle-down" aria-hidden="true"></i></a>
<!-- mt dropmenu start here -->
<div class="mt-dropmenu text-left">
<!-- mt frame start here -->
<div class="mt-frame">
<!-- mt f box start here -->
<div class="mt-f-box">
<!-- mt col3 start here -->
<div class="mt-col-3">
<div class="sub-dropcont">
<strong class="title"><a href="product-grid-view.html" class="mt-subopener">PRODUCTS</a></strong>
<div class="sub-drop">
<ul>
<li><a href="product-grid-view.html">Product Grid View</a></li>
<li><a href="product-list-view.html">Product List View</a></li>
<li><a href="product-detail.html">Product Detail</a></li>
</ul>
</div>
</div>
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">404 Pages</a></strong>
<div class="sub-drop">
<ul>
<li><a href="404-page.html">404 Page</a></li>
<li><a href="404-page2.html">404 Page2</a></li>
</ul>
</div>
</div>
</div>
<!-- mt col3 end here -->
<!-- mt col3 start here -->
<div class="mt-col-3">
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">About US</a></strong>
<div class="sub-drop">
<ul>
<li><a href="about-us.html">About</a></li>
</ul>
</div>
</div>
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">Contact US</a></strong>
<div class="sub-drop">
<ul>
<li><a href="contact-us.html">Contact</a></li>
<li><a href="contact-us2.html">Contact 2</a></li>
</ul>
</div>
</div>
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">Coming Soon</a></strong>
<div class="sub-drop">
<ul>
<li><a href="coming-soon.html">Coming Soon</a></li>
<li><a href="coming-soon2.html">Coming Soon2</a></li>
</ul>
</div>
</div>
</div>
<!-- mt col3 end here -->
<!-- mt col3 start here -->
<div class="mt-col-3">
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">KITCHEN FURNITURE</a></strong>
<div class="sub-drop">
<ul>
<li><a href="#">Kitchen Taps</a></li>
<li><a href="#">Breakfast time</a></li>
<li><a href="#">Cooking</a></li>
<li><a href="#">Food Storage Boxes</a></li>
<li><a href="#">Spice Jars</a></li>
<li><a href="#">Napskins</a></li>
<li><a href="#">Oven Gloves</a></li>
<li><a href="#">Placemats</a></li>
<li><a href="#">Cooking</a></li>
<li><a href="#">Food Storage Boxes</a></li>
<li><a href="#">Spice Jars</a></li>
</ul>
</div>
</div>
</div>
<!-- mt col3 end here -->
<!-- mt col3 start here -->
<div class="mt-col-3 promo">
<div class="mt-promobox">
<a href="#"><img src="http://placehold.it/295x320" alt="promo banner" class="img-responsive"></a>
</div>
</div>
<!-- mt col3 end here -->
</div>
<!-- mt f box end here -->
</div>
<!-- mt frame end here -->
</div>
<!-- mt dropmenu end here -->
<span class="mt-mdropover"></span>
</li>
<li><a href="about-us.html">About</a></li>
<li>
<a class="drop-link" href="contact-us.html">Contact <i class="fa fa-angle-down hidden-lg hidden-md" aria-hidden="true"></i></a>
<div class="s-drop">
<ul>
<li><a href="contact-us.html">Contact</a></li>
<li><a href="contact-us2.html">Contact 2</a></li>
</ul>
</div>
</li>
</ul>
</nav><!-- navigation end here -->
<!-- mt icon list start here -->
<ul class="mt-icon-list">
<li class="hidden-lg hidden-md">
<a href="#" class="bar-opener mobile-toggle">
<span class="bar"></span>
<span class="bar small"></span>
<span class="bar"></span>
</a>
</li>
<li><a class="icon-magnifier" href="#"></a></li>
</ul><!-- mt icon list end here -->
</div><!-- mt holder end here -->
</div><!-- mt nav box end here -->
</div>
</div>
</div>
</div><!-- mt bottom bar end here -->
</header><!-- mt header style5 end here -->
<!-- mt search popup start here -->
<div class="mt-search-popup">
<div class="mt-holder">
<a href="#" class="search-close"><span></span><span></span></a>
<div class="mt-frame">
<form action="#">
<fieldset>
<input type="text" placeholder="Search...">
<span class="icon-microphone"></span>
<button class="icon-magnifier" type="submit"></button>
</fieldset>
</form>
</div>
</div>
</div><!-- mt search popup end here -->
<!-- mt main start here -->
<main id="mt-main">
<div class="container">
<div class="row">
<div class="col-xs-12">
<!-- banner frame start here -->
<div class="banner-frame mt-paddingsmzero wow fadeInUp" data-wow-delay="0.4s">
<!-- slider 7 start here -->
<div class="slider-7 mt-paddingbottomsm wow fadeInLeft" data-wow-delay="0.4s">
<!-- slider start here -->
<div class="slider banner-slider">
<!-- holder star here -->
<div class="s-holder">
<img src="http://placehold.it/765x580" alt="image description">
<div class="s-box">
<strong class="s-title">FURNITURE DESIGNS IDEAS</strong>
<span class="heading add">NEW</span>
<span class="heading add">COLLECTION</span>
<div class="s-txt">
<p>Consectetur adipisicing elit. Beatae accusamus, optio, repellendus inventore</p>
</div>
<a href="product-detail.html" class="s-shop">SHOP NOW</a>
</div>
</div><!-- holder end here -->
<!-- holder start here -->
<div class="s-holder">
<img src="http://placehold.it/765x580" alt="image description">
<div class="s-box">
<strong class="s-title">FURNITURE DESIGNS IDEAS</strong>
<span class="heading">Upholstered fabric</span>
<span class="heading add">Counter stool</span>
<div class="s-txt">
<p>Consectetur adipisicing elit. Beatae accusamus, optio, repellendus inventore</p>
</div>
</div>
</div><!-- holder end here -->
<!-- holder start here -->
<div class="s-holder">
<img src="http://placehold.it/765x580" alt="image description">
<div class="s-box">
<strong class="s-title">FURNITURE DESIGNS IDEAS</strong>
<span class="heading">Upholstered fabric</span>
<span class="heading add">Counter stool</span>
<div class="s-txt">
<p>Consectetur adipisicing elit. Beatae accusamus, optio, repellendus inventore</p>
</div>
</div>
</div><!-- holder end here -->
<!-- holder start here -->
<div class="s-holder">
<img src="http://placehold.it/765x580" alt="image description">
<div class="s-box">
<strong class="s-title">KITCHEN ACCESSORIES</strong>
<span class="heading">Wooden chopping board</span>
<span class="heading add">Chopping Boards</span>
<div class="s-txt">
<p>Remo is a cutting board in solid oak wood, with an explicit reference to the oars of the boats.</p>
</div>
</div>
</div><!-- holder end here -->
</div>
</div><!-- slider 7 end here -->
<!-- banner box third start here -->
<div class="banner-box third wow fadeInRight" data-wow-delay="0.4s">
<!-- banner 12 right white start here -->
<div class="banner-12 right white wow fadeInUp" data-wow-delay="0.4s">
<img src="http://placehold.it/415x225" alt="image description">
<div class="holder">
<h2><span>Chairs</span><strong>ZIO DINING CHAIR</strong></h2>
<a class="btn-shop" href="product-detail.html">
<span>SHOP NOW</span>
<i class="fa fa-angle-right"></i>
</a>
</div>
</div><!-- banner 12 right white end here -->
<!-- banner 13 right start here -->
<div class="banner-13 right wow fadeInDown" data-wow-delay="0.4s">
<img src="http://placehold.it/415x335" alt="image description">
<div class="holder">
<h2><span>Accessories / Lighting</span><strong>TOTEM FLOOR LAMP</strong></h2>
<a class="btn-shop" href="product-detail.html">
<span>SHOP NOW</span>
<i class="fa fa-angle-right"></i>
</a>
</div>
</div><!-- banner 13 right end here -->
</div><!-- banner box third end here -->
</div><!-- banner frame end here -->
<!-- F Promo Box style2 of the Page -->
<aside class="f-promo-box style2 wow fadeInUp" data-wow-delay="0.4s">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-3">
<!-- F Widget Item of the Page -->
<div class="f-widget-item">
<span class="widget-icon"><i class="fa fa-plane"></i></span>
<div class="txt-holder">
<h1 class="f-promo-box-heading">FREE SHIPPING</h1>
<p>Free shipping on all US order</p>
</div>
</div>
<!-- F Widget Item of the Page end -->
</div>
<div class="col-xs-12 col-sm-3">
<!-- F Widget Item of the Page -->
<div class="f-widget-item border">
<span class="widget-icon"><i class="fa fa-life-ring"></i></span>
<div class="txt-holder">
<h1 class="f-promo-box-heading">SUPPORT 24/7</h1>
<p>We support 24 hours a day</p>
</div>
</div>
<!-- F Widget Item of the Page end -->
</div>
<div class="col-xs-12 col-sm-3">
<!-- F Widget Item of the Page -->
<div class="f-widget-item border">
<span class="widget-icon"><i class="fa fa-dropbox"></i></span>
<div class="txt-holder">
<h1 class="f-promo-box-heading">GIFT CARDS</h1>
<p>Give perfect gift</p>
</div>
</div>
<!-- F Widget Item of the Page end -->
</div>
<div class="col-xs-12 col-sm-3">
<!-- F Widget Item of the Page -->
<div class="f-widget-item border">
<span class="widget-icon"><i class="fa fa-money"></i></span>
<div class="txt-holder">
<h1 class="f-promo-box-heading">PAYMENT 100% SECURE</h1>
<p>Payment 100% secure</p>
</div>
</div>
<!-- F Widget Item of the Page end -->
</div>
</div>
</div>
</aside>
<!-- F Promo Box of the Page end -->
<!-- banner frame start here -->
<div class="banner-frame nospace wow fadeInUp" data-wow-delay="0.4s">
<!-- banner 9 start here -->
<div class="banner-9">
<img alt="image description" src="http://placehold.it/400x210">
<div class="holder">
<h2><span>Wall Decor</span><strong>CLOCKs</strong></h2>
<a href="product-detail.html" class="btn-shop">
<span>VIEW</span>
<i class="fa fa-angle-right"></i>
</a>
</div>
</div><!-- banner 9 end here -->
<!-- banner 10 start here -->
<div class="banner-10">
<img alt="image description" src="http://placehold.it/400x210">
<div class="holder">
<h2><span>Coffee Tables</span><strong>S.O.S. BLOCKS</strong></h2>
<a href="product-detail.html" class="btn-shop">
<span>VIEW</span>
<i class="fa fa-angle-right"></i>
</a>
</div>
</div><!-- banner 10 end here -->
<!-- banner 11 start here -->
<div class="banner-11">
<img alt="image description" src="http://placehold.it/400x210">
<div class="holder">
<h2><span>Floor Lamps</span><strong>ROCKING LAMP</strong></h2>
<a href="product-detail.html" class="btn-shop">
<span>VIEW</span>
<i class="fa fa-angle-right"></i>
</a>
</div>
</div><!-- banner 11 end here -->
</div><!-- banner frame end here -->
<!-- mt producttabs style5 start here -->
<div class="mt-producttabs style5 wow fadeInUp" data-wow-delay="0.4s">
<!-- producttabs start here -->
<ul class="producttabs">
<li><a href="#tab1" class="active">FEATURED</a></li>
<li><a href="#tab2">LATEST</a></li>
<li><a href="#tab3">BEST SELLER</a></li>
</ul>
<!-- producttabs end here -->
<div class="tab-content row">
<div id="tab1">
<!-- tabs slider start here -->
<div class="tabs-sliderlg">
<!-- slide start here -->
<div class="slide">
<!-- mt product2 start here -->
<div class="mt-product2 large bg-grey">
<!-- box start here -->
<div class="box">
<img alt="image description" src="http://placehold.it/275x290">
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i></a></li>
<li><a href="#"><i class="icon-heart"></i></a></li>
<li><a href="#"><i class="fa fa-eye"></i></a></li>
</ul>
</div><!-- box end here -->
<!-- txt end here -->
<div class="txt">
<strong class="title">Bombi Chair</strong>
<span class="price"><i class="fa fa-eur"></i> <span>399,00</span></span>
</div><!-- txt end here -->
</div><!-- mt product2 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product2 start here -->
<div class="mt-product2 large bg-grey">
<!-- box start here -->
<div class="box">
<img alt="image description" src="http://placehold.it/275x290">
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i></a></li>
<li><a href="#"><i class="icon-heart"></i></a></li>
<li><a href="#"><i class="fa fa-eye"></i></a></li>
</ul>
</div><!-- box end here -->
<!-- txt end here -->
<div class="txt">
<strong class="title">Marvelous Modern 3 Seater</strong>
<span class="price"><i class="fa fa-eur"></i> <span>599,00</span></span>
</div><!-- txt end here -->
</div><!-- mt product2 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product2 start here -->
<div class="mt-product2 large bg-grey">
<!-- box start here -->
<div class="box">
<img alt="image description" src="http://placehold.it/275x290">
<span class="caption">
<span class="off">15% Off</span>
</span>
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i></a></li>
<li><a href="#"><i class="icon-heart"></i></a></li>
<li><a href="#"><i class="fa fa-eye"></i></a></li>
</ul>
</div><!-- box end here -->
<!-- txt end here -->
<div class="txt">
<strong class="title">Puff Armchair</strong>
<span class="price"><i class="fa fa-eur"></i> <span>200,00</span></span>
</div><!-- txt end here -->
</div><!-- mt product2 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product2 start here -->
<div class="mt-product2 large bg-grey">
<!-- box start here -->
<div class="box">
<img alt="image description" src="http://placehold.it/275x290">
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i></a></li>
<li><a href="#"><i class="icon-heart"></i></a></li>
<li><a href="#"><i class="fa fa-eye"></i></a></li>
</ul>
</div><!-- box end here -->
<!-- txt end here -->
<div class="txt">
<strong class="title">Bombi Chair</strong>
<span class="price"><i class="fa fa-eur"></i> <span>399,00</span></span>
</div><!-- txt end here -->
</div><!-- mt product2 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product2 start here -->
<div class="mt-product2 large bg-grey">
<!-- box start here -->
<div class="box">
<img alt="image description" src="http://placehold.it/275x290">
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i></a></li>
<li><a href="#"><i class="icon-heart"></i></a></li>
<li><a href="#"><i class="fa fa-eye"></i></a></li>
</ul>
</div><!-- box end here -->
<!-- txt end here -->
<div class="txt">
<strong class="title">Marvelous Modern 3 Seater</strong>
<span class="price"><i class="fa fa-eur"></i> <span>599,00</span></span>
</div><!-- txt end here -->
</div><!-- mt product2 end here -->
</div>
</div>
<!-- tabs slider end here -->
</div>
</div>
</div><!-- mt producttabs end here -->
<!-- mt producttabs style6 start here -->
<div class="mt-producttabs style6 wow fadeInUp" data-wow-delay="0.4s">
<div class="mt-heading2">
<h2 class="head">WOODEN CHAIRS</h2>
<p>FURNITURE DESIGNS IDEAS</p>
</div>
<!-- tabs slider start here -->
<div class="tabs-slider row">
<!-- slide start here -->
<div class="slide">
<!-- mt product1 start here -->
<div class="mt-product1">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="http://placehold.it/215x215" alt="image description"></a>
<span class="caption">
<span class="new">new</span>
</span>
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i><span>Add to Cart</span></a></li>
<li><a href="#"><i class="icomoon icon-heart-empty"></i></a></li>
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Puff Chair</a></strong>
<span class="price"><i class="fa fa-eur"></i> <span>287,00</span></span>
</div>
</div><!-- mt product1 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 start here -->
<div class="mt-product1">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="http://placehold.it/215x215" alt="image description"></a>
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i><span>Add to Cart</span></a></li>
<li><a href="#"><i class="icomoon icon-heart-empty"></i></a></li>
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Bombi Chair</a></strong>
<span class="price"><i class="fa fa-eur"></i> <span>399,00</span></span>
</div>
</div><!-- mt product1 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 start here -->
<div class="mt-product1">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="http://placehold.it/215x215" alt="image description"></a>
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i><span>Add to Cart</span></a></li>
<li><a href="#"><i class="icomoon icon-heart-empty"></i></a></li>
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Wood Chair</a></strong>
<span class="price"><i class="fa fa-eur"></i> <span>198,00</span></span>
</div>
</div><!-- mt product1 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 start here -->
<div class="mt-product1">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="http://placehold.it/215x215" alt="image description"></a>
<span class="caption">
<span class="off">15% Off</span>
<span class="new">new</span>
</span>
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i><span>Add to Cart</span></a></li>
<li><a href="#"><i class="icomoon icon-heart-empty"></i></a></li>
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Bombi Chair</a></strong>
<span class="price"><i class="fa fa-eur"></i> <span>200,00</span></span>
</div>
</div><!-- mt product1 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 start here -->
<div class="mt-product1">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="http://placehold.it/215x215" alt="image description"></a>
<ul class="links add">
<li><a href="#"><i class="icon-handbag"></i></a></li>
<li><a href="#"><i class="icomoon icon-heart-empty"></i></a></li>
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Bombi Chair</a></strong>
<span class="price"><i class="fa fa-eur"></i> <span>399,00</span></span>
</div>
</div><!-- mt product1 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 start here -->
<div class="mt-product1">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="http://placehold.it/215x215" alt="image description"></a>
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i><span>Add to Cart</span></a></li>
<li><a href="#"><i class="icomoon icon-heart-empty"></i></a></li>
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Wood Chair</a></strong>
<span class="price"><i class="fa fa-eur"></i> <span>198,00</span></span>
</div>
</div><!-- mt product1 end here -->
</div><!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 start here -->
<div class="mt-product1">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="http://placehold.it/215x215" alt="image description"></a>
<span class="caption">
<span class="off">15% Off</span>
<span class="new">new</span>
</span>
<ul class="links">
<li><a href="#"><i class="icon-handbag"></i><span>Add to Cart</span></a></li>
<li><a href="#"><i class="icomoon icon-heart-empty"></i></a></li>
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Bombi Chair</a></strong>
<span class="price"><i class="fa fa-eur"></i> <span>200,00</span></span>
</div>
</div><!-- mt product1 end here -->
</div><!-- slide end here -->
</div>
<!-- tabs slider end here -->
</div><!-- mt producttabs style3 end here -->
<!-- banner frame start here -->
<div class="banner-frame wow fadeInUp" data-wow-delay="0.4s">
<!-- banner 15 start here -->
<div class="banner-15 right">
<img src="http://placehold.it/590x250" alt="image description">
<div class="holder">
<h2>Chairs <strong>ZIO DINING CHAIR</strong></h2>
<a class="btn-shop" href="#">
<span>SHOP NOW</span>
<i class="fa fa-angle-right"></i>
</a>
</div>
</div><!-- banner 15 end here -->
<!-- banner 15 start here -->
<div class="banner-15 right">
<img src="http://placehold.it/590x250" alt="image description">
<div class="holder">
<h2>Accessories / Lighting <strong>TOTEM FLOOR LAMP</strong></h2>
<a class="btn-shop" href="#">
<span>SHOP NOW</span>
<i class="fa fa-angle-right"></i>
</a>
</div>
</div><!-- banner 15 end here -->
</div><!-- banner frame end here -->
<div class="mt-smallproducts mt-nopaddingtopxs wow fadeInUp" data-wow-delay="0.4s">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3 mt-paddingbottomsm">
<h3 class="heading">Hot Sale</h3>
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>
</div>
<div class="text">
<div class="frame">
<strong><a href="product-detail.html">Egon Wooden Chair</a></strong>
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
</div>
<del class="off">$75,00</del>
<span class="price">$55,00</span>
</div>
</div><!-- mt product4 end here -->
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>
</div>
<div class="text">
<div class="frame">
<strong><a href="product-detail.html">Oyo Cantilever Chair</a></strong>
</div>
<del class="off">$75,00</del>
<span class="price">$55,00</span>
</div>
</div><!-- mt product4 end here -->
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>
</div>
<div class="text">
<div class="frame">
<strong><a href="product-detail.html">Kurve Chair</a></strong>
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
</div>
<del class="off">$75,00</del>
<span class="price">$55,00</span>
</div>
</div><!-- mt product4 end here -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3 mt-paddingbottomsm">
<h3 class="heading">Featured Products</h3>
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>
</div>
<div class="text">
<div class="frame">
<strong><a href="product-detail.html">Bombi Chair</a></strong>
</div>
<del class="off">$75,00</del>
<span class="price">$33,00</span>
</div>
</div><!-- mt product4 end here -->
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>
</div>
<div class="text">
<div class="frame">
<strong><a href="product-detail.html">Oyo Cantilever Chair</a></strong>
</div>
<span class="price">$55,00</span>
</div>
</div><!-- mt product4 end here -->
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>
</div>
<div class="text">
<div class="frame">
<strong><a href="product-detail.html">Puff Chair</a></strong>
</div>
<del class="off">$75,00</del>
<span class="price">$55,00</span>
</div>
</div><!-- mt product4 end here -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3 mt-paddingbottomxs">
<h3 class="heading">Sale Products</h3>
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>
</div>
<div class="text">
<div class="frame">
<strong><a href="product-detail.html">Marvelous Wooden Chair</a></strong>
</div>
<del class="off">$75,00</del>
<span class="price">$55,00</span>
</div>
</div><!-- mt product4 end here -->
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>
</div>
<div class="text">
<div class="frame">
<strong><a href="product-detail.html">Oyo Cantilever Chair</a></strong>
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
</div>
<span class="price">$55,00</span>
</div>
</div><!-- mt product4 end here -->
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>
</div>
<div class="text">
<div class="frame">
<strong><a href="product-detail.html">Kurve Chair</a></strong>
</div>
<del class="off">$75,00</del>
<span class="price">$55,00</span>
</div>
</div><!-- mt product4 end here -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<h3 class="heading">Top Rated Products</h3>
<!-- mt product4 start here -->
<div class="mt-product4 mt-paddingbottom20">
<div class="img">
<a href="product-detail.html"><img src="http://placehold.it/80x80" alt="image description"></a>