-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1064 lines (1060 loc) · 46.6 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 lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,700;0,800;1,300;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Sonsie+One&family=Anton&family=Oswald:wght@300;400;500;600;700&family=Roboto:ital,wght@0,300;0,400;0,700;1,100&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/lightslider/1.1.6/css/lightslider.css"
integrity="sha512-+1GzNJIJQ0SwHimHEEDQ0jbyQuglxEdmQmKsu8KI7QkMPAnyDrL9TAnVyLPEttcTxlnLVzaQgxv2FpLCLtli0A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/lightslider/1.1.6/js/lightslider.min.js"
integrity="sha512-Gfrxsz93rxFuB7KSYlln3wFqBaXUc1jtt3dGCp+2jTb563qYvnUBM/GP2ZUtRC27STN/zUamFtVFAIsRFoT6/w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<link rel="stylesheet" href="./static/css/app.css" />
<title>TruTee - Clothing & Apparel</title>
</head>
<body class="body active">
<header id="header">
<!-- Main Nav -->
<div id="site-nav">
<nav id="nav-bar" class="navbar navbar-expand-sm navbar-light">
<div
class="
nav-wrapper
d-flex
justify-content-between
align-items-center
w-100
p-2
"
>
<a id="logo-link" id="#showcase">
<img
id="header-img"
class="img--round"
src="./static/assets/Truu_Tees_logo.jpg"
alt="logo"
/>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div id="site-container" class="container-fluid">
<div
class="collapse navbar-collapse justify-content-end"
id="navbarNav"
>
<ul class="navbar-nav ps-2">
<li class="nav-item">
<a class="nav-link" href="#women-wear">Women Wear</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#men-wear">Men Wear</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#deals">Deals</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#trend">Trends</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<main role="main">
<!-- Hero full Background -->
<section id="showcase">
<div class="container-lg">
<div class="hero text-center">
<div class="hero__header mx-auto text-center pt-5">
<h1 class="hero__title title typing-text">Let's Talk Fashion!</h1>
</div>
<div class="img-wrapper">
<img
class="img--full"
srcset="./static/assets/nike-airforces.jpg"
alt="Nike Air-Forces shoe"
/>
</div>
<div class="cta-block bg--img">
<div class="wrapper">
<h2 class="title">Hyper Royal Air Forces</h2>
<a class="cta btn btn-block btn-info" href="#">
<i class="fas fa-shopping-cart"></i>
GET YOURS TODAY!
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Product -->
<section id="apparel">
<div class="header">
<h1
class="title title--lg text-center mb-5"
style="font-family: 'Anton', sans-serif; font-weight: 400"
>
Apparel
</h1>
</div>
<div id="women-wear" class="product">
<div class="container-xl">
<div class="wrapper product-wrapper">
<h2 class="title title--bb">Women Wear</h2>
<div class="product__content">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-4">
<!-- col 1 -->
<div class="col">
<div class="card">
<img
class="card-img-top"
src="./static/assets/apparel/women/women_wear_pink.jpg"
alt="women wear"
/>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Nike Pro Dri-Fit Set</p>
<p class="info__subtitle text-muted">
Women's Nike Pro Dri-Fit
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">4</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/women/women_wear_pink.jpg"
alt="Women Drip-Fit Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/women_wear_red.jpg"
alt="Women Drip-Fit Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/women_wear_yellow.jpg"
alt="Women Drip-Fit Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/women_wear_black.jpg"
alt="Women Drip-Fit Set"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">$39.99</span>
<strike>$49.99</strike>
</div>
<button class="btn btn--checkout">Buy Now</button>
</div>
</div>
</div>
</div>
<!-- col 2 -->
<div class="col">
<div class="card">
<img
class="card-img-top"
src="./static/assets/apparel/women/nike_dri-fit_sleeveless_yellow.jpg"
alt="Women Pro Dri-Fit Sleeveless Set"
/>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">
Nike Pro Dri-Fit Sleeves Shorts Set
</p>
<p class="info__subtitle text-muted">
Women's Nike Pro Dri-Fit Sleeveless Shorts Set
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">3</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/women/nike_dri-fit_sleeveless_yellow.jpg"
alt="Women Pro Dri-Fit Sleeveless Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/nike_dri-fit_sleeveless_pink.jpg"
alt="Women Pro Dri-Fit Sleeveless Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/nike_dri-fit_sleeveless_white.jpg"
alt="Women Pro Dri-Fit Sleeveless Set"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">42.99</span>
<span><strike>$45.99</strike> </span>
</div>
<button class="btn btn--checkout">Buy Now</button>
</div>
</div>
</div>
</div>
<!-- col 3 -->
<div class="col">
<div class="card card--new-item">
<img
class="card-img-top"
src="./static/assets/apparel/women/women_marc_jacob_snapshot_bag_white.jpg"
alt="Marc Job Snapshot Purse"
/>
<div class="item-label">
<div class="inner-label">
<i class="fa fa-star text-warning"></i>
<span>Hot Item</span>
</div>
</div>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Marc Jacob SnapShot Bag</p>
<p class="info__subtitle text-muted">
Women's Marc Jacob SnapShot
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">3</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/women/women_marc_jacob_snapshot_bag_white.jpg"
alt="Marc Job Snapshot Purse"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/women_marc_jacob_snapshot_bag_pink.jpg"
alt="Marc Job Snapshot Purse"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/women_marc_jacob_snapshot_bag_orange.jpg"
alt="Marc Job Snapshot Purse"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">249.99</span>
<span><strike>$295.99</strike> </span>
</div>
<button class="btn btn--checkout">Buy Now</button>
</div>
</div>
</div>
</div>
<!-- col 4 -->
<div class="col">
<div class="card card--new-item">
<img
class="card-img-top"
src="./static/assets/apparel/women/women_ugg_boots_gray.jpg"
alt="women Ugg Boots"
/>
<div class="item-label">
<div class="inner-label">
<i class="fa fa-star text-warning"></i>
<span>Hot Item</span>
</div>
</div>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Ugg Boots</p>
<p class="info__subtitle text-muted">
Women's Fur Ugg Boots
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">3</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/women//women_ugg_boots_gray.jpg"
alt="Women Ugg Boots"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/women_ugg_boots_brown.jpg"
alt="Women Ugg Boots"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women//women_ugg_boots_multicolor.jpg"
alt="Women Ugg Boots"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">189.99</span>
<span><strike>$205.99</strike> </span>
</div>
<button class="btn btn--checkout">Buy Now</button>
</div>
</div>
</div>
</div>
<!-- col 5 -->
<div class="col">
<div class="card">
<img
class="card-img-top"
src="./static/assets/apparel/women/nike_dri-fit_sport_black.jpg"
alt="Women Nike Pro Dri-Fit Set"
/>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Nike Pro Dri-Fit Sport</p>
<p class="info__subtitle text-muted">
Women's Nike Pro Dri-Fit Sport
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">3</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img class="product__imgthumb active"
src="./static/assets/apparel/women/nike_dri-fit_sport_black.jpg"
alt="Women Nike Pro Dri-Fit Set""> <img class="
product__imgthumb"
src="./static/assets/apparel/women/nike_dri-fit_sport_pink.jpg"
alt="Women Nike Pro Dri-Fit Set""> <img class="
product__imgthumb"
src="./static/assets/apparel/women/nike_dri-fit_sport_purple.jpg"
alt="Women Nike Pro Dri-Fit Set"">
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">55.99</span>
<span><strike>$62.99</strike> </span>
</div>
<button class="btn btn--checkout">Buy Now</button>
</div>
</div>
</div>
</div>
<!-- col 6 -->
<div class="col">
<div class="card">
<img
class="card-img-top"
src="./static/assets/apparel/women/ALAZA-bags-for-women-Backpacks-Afro-Girls-Black-Women_4.jpg"
alt="Alaza Backpack Black Women"
/>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Alaza Backpack Black Women</p>
<p class="info__subtitle text-muted">
Women's Alaza Backpack
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">4</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/women/ALAZA-bags-for-women-Backpacks-Afro-Girls-Black-Women_4.jpg"
alt="Alaza Backpack Black Women"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/ALAZA-bags-for-women-Backpacks-Afro-Girls-Black-Women.jpg"
alt="Alaza Backpack Black Women"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/ALAZA-bags-for-women-Backpacks-Afro-Girls-Black-Women_2.jpg"
alt="Alaza Backpack Black Women"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/women/ALAZA-bags-for-women-Backpacks-Afro-Girls-Black-Women_3.jpg"
alt="Alaza Backpack Black Women"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">42.99</span>
<span><strike>$54.99</strike> </span>
</div>
<button class="btn btn--checkout">Buy Now</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="men-wear" class="product">
<div class="container-xl">
<div class="wrapper product-wrapper">
<h2 class="title title--bb">Men Wear</h2>
<div class="product__content">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-4">
<!-- col 1 -->
<div class="col">
<div class="card card--new-item">
<img
class="card-img-top"
src="./static/assets/apparel/men/givenchy_paris_black.jpg"
alt="Givenchy Paris Set"
/>
<div class="item-label">
<div class="inner-label">
<i class="fa fa-star text-warning"></i>
<span>Hot Item</span>
</div>
</div>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Givenchy Paris Set</p>
<p class="info__subtitle text-muted">
Men's Givenchy Paris Set
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">4</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/men/givenchy_paris_black.jpg"
alt="Givenchy Paris Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/givenchy_paris_white.jpg"
alt="Givenchy Paris Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/givenchy_paris_blue.jpg"
alt="Givenchy Paris Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/givenchy_paris_red.jpg"
alt="Givenchy Paris Set"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">759.99</span>
<span><strike>$785.99</strike> </span>
</div>
<button class="btn btn--checkout">Buy Now</button>
</div>
</div>
</div>
</div>
<!-- col 2 -->
<div class="col">
<div class="card card--new-item">
<img
class="card-img-top"
src="./static/assets/apparel/men/men_moschino_set_yellow.jpg"
alt="Moschino Shorts Set"
/>
<div class="item-label">
<div class="inner-label">
<i class="fa fa-star text-warning"></i>
<span>Hot Item</span>
</div>
</div>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Moschino Shorts Set</p>
<p class="info__subtitle text-muted">
Men's Moschino Shorts Set
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">3</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/men/men_moschino_set_yellow.jpg"
alt="Moschino Shorts Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/men_moschino_set_black.jpg"
alt="Moschino Shorts Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/men_moschino_set_red.jpg"
alt="Moschino Shorts Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/men_moschino_set_green.jpg"
alt="Moschino Shorts Set"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">899.99</span>
<span><strike>$925.99</strike></span>
</div>
<button class="btn btn--checkout">buy now</button>
</div>
</div>
</div>
</div>
<!-- col 3 -->
<div class="col">
<div class="card">
<img
class="card-img-top"
src="./static/assets/apparel/men/men_nike_jogger_set_red.jpg"
alt="Men Nike Jogger Set"
/>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Nike Joggers Set</p>
<p class="info__subtitle text-muted">
Men's Nike Joggers Set
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">2</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/men/men_nike_jogger_set_red.jpg"
alt="Men Nike Jogger Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/men_nike_jogger_set_yellow.jpg"
alt="Men Nike Jogger Set"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">85.29</span>
<span><strike>$94.29</strike> </span>
</div>
<button class="btn btn--checkout">buy now</button>
</div>
</div>
</div>
</div>
<!-- col 4 -->
<div class="col">
<div class="card">
<img
class="card-img-top"
src="./static/assets/apparel/men/men_lacoste_set_green.jpg"
alt="Lacoste Shorts Set"
/>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Lacoste Shorts Set</p>
<p class="info__subtitle text-muted">
Men's Lacoste Shorts Set
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">3</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/men/men_lacoste_set_green.jpg"
alt="Lacoste Shorts Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/men_lacoste_set_brown.jpg"
alt="Lacoste Shorts Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/men_lacoste_set_white.jpg"
alt="Lacoste Shorts Set"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">129.99</span>
<span><strike>$142.99</strike> </span>
</div>
<button class="btn btn--checkout">buy now</button>
</div>
</div>
</div>
</div>
<!-- col 5 -->
<div class="col">
<div class="card card--new-item">
<img
class="card-img-top"
src="./static/assets/apparel/men/nike_pro_set_red.jpg"
alt="men wear"
/>
<div class="item-label">
<div class="inner-label">
<i class="fa fa-star text-warning"></i>
<span>Hot Item</span>
</div>
</div>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Nike Air Shorts Set</p>
<p class="info__subtitle text-muted">
Men's Nike Air Shorts Set
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">4</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/men/nike_pro_set_red.jpg"
alt=""
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/nike_pro_set_black.jpg"
alt=""
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/nike_pro_set_white.jpg"
alt=""
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/nike_pro_set_blue.jpg"
alt=""
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">89.59</span>
<span><strike>$97.99</strike> </span>
</div>
<button class="btn btn--checkout">buy now</button>
</div>
</div>
</div>
</div>
<!-- col 6 -->
<div class="col">
<div class="card card--new-item">
<img
class="card-img-top"
src="./static/assets/apparel/men/lacoste_shirt_blue.jpg"
alt="Lacoste Long Sleeves Set"
/>
<div class="item-label">
<div class="inner-label">
<i class="fa fa-star text-warning"></i>
<span>Hot Item</span>
</div>
</div>
<div class="card-body product-detail">
<div class="info product__info">
<p class="info__title">Lacoste Long Sleeves Set</p>
<p class="info__subtitle text-muted">
Men's Lacoste Long Sleeves Set
</p>
<p class="info__color text-muted">
<span class="total_colors me-1">4</span>Colors
</p>
</div>
<div class="thumbs product__thumbtray is-hover">
<img
class="product__imgthumb active"
src="./static/assets/apparel/men/lacoste_shirt_blue.jpg"
alt="Lacoste Long Sleeves Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/lacoste_shirt_red.jpg"
alt="Lacoste Long Sleeves Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/lacoste_shirt_brown.jpg"
alt="Lacoste Long Sleeves Set"
/>
<img
class="product__imgthumb"
src="./static/assets/apparel/men/lacoste_shirt_grey.jpg"
alt="Lacoste Long Sleeves Set"
/>
</div>
<div class="product__checkout grid">
<div class="price-wrapper">
<span class="product__price">72.99</span>
<span><strike>$82.99</strike> </span>
</div>
<button class="btn btn--checkout">buy now</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Promotion -->
<section id="deals" class="text-center">
<div class="header text-center">
<h1 class="title mb-2">Special Limited Time Offer!</h1>
<p class="lead">
Take advantage of our special deals and save
<span class="fw-bold">25% off</span> your purchase!
</p>
</div>
<div id="deals-countdown">
<div class="wrapper" id="days">
<h3 class="dt-label">Days</h3>
<div class="countdown"><span>7</span></div>
</div>
<div class="wrapper" id="hours">
<h3 class="dt-label">Hours</h3>
<div class="countdown"><span>5</span></div>
</div>
<div class="wrapper" id="minutes">
<h3 class="dt-label d-none d-sm-block">Minutes</h3>
<h3 class="dt-label d-sm-none">Mins</h3>
<div class="countdown"><span>2</span></div>
</div>
<div class="wrapper" id="seconds">
<h3 class="dt-label d-none d-sm-block">Seconds</h3>
<h3 class="dt-label d-sm-none">Secs</h3>
<div class="countdown"><span class="ticker">10</span></div>
</div>
</div>
<div class="header-bottom py-3 pb-5">
<h2 class="text-warning fw-bold tshadow">
<i class="fa fa-shipping-fast tshadow"></i>
Merchandise is going fast! Hurry soon before it's gone!
</h2>
</div>
<script type="text/javascript">
const end = moment().endOf("week");
setInterval(function () {
const timeLeft = moment(end.diff(moment())); // get difference between now and timestamp
const formatted = timeLeft.format("D:HH:mm:ss"); // make pretty
$("#deals-countdown .countdown").each(function (i, e) {
$(e).find("span").text(formatted.split(":")[i]);
});
}, 1000);
</script>
<div id="newsletter">
<div class="container">
<div class="row align-items-center">
<div class="col-md-4 d-none d-md-block">
<div class="img-wrapper">
<img
id="cta-img"
src="./static/assets/dog_wearing_hoodie_no_bg.jpg"
alt="Dog wearing hoodie"
/>
</div>
</div>
<div class="col-12 col-md-8">
<div class="form-wrapper">
<form
id="form"
action="https://www.freecodecamp.com/email-submit"
method="POST"
>
<h1 class="title mb-4 mb-lg-2">Join Our Newsletter!</h1>
<p class="lead">
Subscribe to our newsletter and receive
<span class="fw-bold">10% off</span> your next purchase!
</p>
<div class="input-group ps-5">
<input
id="email"
type="email"
name="email"
placeholder="Enter your email"
required
/>
<input
id="submit"
class="btn text-white shadow w-50 mt-2"
type="submit"
value="Join Us Today!"
/>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trend -->
<section id="trend">
<div class="container">
<h2 class="title">What's Trending Now</h2>
<div id="trend-card">
<!-- video card 1 -->
<div class="card">
<video
id="video"
class="card-img-top video-top"
src="https://st3.depositphotos.com/2218438/13541/v/600/depositphotos_135418128-stock-video-black-man-wearing-stylish-clothes.mp4"
width="500"
height="500"
autoplay
muted
loop
></video>
<h2 class="fashion-title title">Men's New Business Apparel</h2>
<div class="card-body">
<p class="content">
Lorem consectetur non suscipit velit architecto? Vitae
molestiae similique modi illo saepe Aut minima dicta
architecto hic repellendus. Nisi exercitationem soluta magni
odit officia. Aspernatur officia debitis in in fuga
</p>
</div>
<div class="card-footer border-0">
<a class="cta-btn btn btn-secondary d-block fw-bold" href="#"
>Get started</a
>
</div>
</div>
<!-- video card 2 -->
<div class="card">
<video
class="card-img-top video-top"
src="https://st3.depositphotos.com/1003940/34953/v/600/depositphotos_349538924-stock-video-wonderful-smiling-ethinic-woman-on.mp4"
width="500"
height="500"
autoplay
muted
loop
></video>
<h2 class="fashion-title title">Women's Casual Arrivals</h2>
<div class="card-body">
<p class="content">
Elit accusantium nobis non asperiores nisi. Aut quod nemo sint
reprehenderit vero blanditiis Inventore distinctio magni
recusandae atque esse? Officiis quibusdam amet porro vel
impedit. Repudiandae reiciendis beatae non sit
</p>
</div>
<div class="card-footer border-0">
<a class="cta-btn btn btn-secondary d-block fw-bold" href="#"
>Get started</a
>
</div>
</div>
<!-- video card 3 -->
<div class="card">
<video
class="card-img-top video-top"
src="https://st3.depositphotos.com/1514397/19196/v/600/depositphotos_191965098-stock-video-black-mixed-race-woman-with.mp4"
width="500"
height="500"
autoplay
muted
loop
></video>
<h2 class="fashion-title title">Women's New Fall Arrivals</h2>
<div class="card-body">
<p class="content">
Elit laborum aspernatur ut quo nostrum. Facilis rem animi
reiciendis quaerat architecto. Laborum suscipit aspernatur
voluptate quasi voluptas fugiat? Sit mollitia voluptate
voluptates placeat officia Vero tempora odit officiis odit
</p>
</div>
<div class="card-footer border-0">
<a class="cta-btn btn btn-secondary d-block fw-bold" href="#"
>Get started</a
>
</div>
</div>
<!-- video card 4 -->
<div class="card">
<video
class="card-img-top video-top"
src="https://st2.depositphotos.com/6375736/45017/v/600/depositphotos_450178836-stock-video-cool-black-african-american-man.mp4"
width="500"
height="500"
autoplay
muted
loop
></video>
<h2 class="fashion-title title">Men's Casual Outfits</h2>
<div class="card-body">
<p class="content">
Consectetur possimus praesentium numquam doloribus maxime
Provident rem eum provident odit dolore. Voluptatem delectus
voluptatem quas consequatur voluptas. Repellat natus debitis
perferendis inventore.
</p>
</div>
<div class="card-footer border-0">
<a class="cta-btn btn btn-secondary d-block fw-bold" href="#"
>Get started</a
>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer id="site-footer">
<div class="container">
<div class="row gy-3 gx-5">
<div class="col-6 col-md-6">
<div class="footer__content">
<h2
class="col-lg-6 title text-center border-bottom border-2 pb-1"
>
Site Map
</h2>
<ul id="site-guide" class="footer__list">
<li class="list-item">
<a class="nav-link" href="#women-wear">Women Wear</a>
</li>
<li class="list-item">
<a class="nav-link" href="#men-wear">Men Wear</a>
</li>
<li class="list-item">
<a class="nav-link" href="#deals">Deals</a>
</li>