-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1604 lines (1604 loc) · 54.5 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 charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Amazon.com. Spend less. Smile more.</title>
<!-- The icon -->
<link rel="icon" href="assets/favicon.ico" />
<!-- Render all elements normally -->
<link rel="stylesheet" href="style/normalize.css" />
<!-- Amazon Font -->
<link href="https://fonts.cdnfonts.com/css/amazon-ember" rel="stylesheet" />
<!--Load font awesome library -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Main style -->
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<!-- Starting the header -->
<header>
<!-- top menu bar -->
<nav class="top-menu">
<div class="top-menu__left">
<div class="left__logo">
<img
src="assets/amazon-Logo-dark-mood.png"
alt="Amazon nav logo"
loading="lazy"
/>
</div>
<div class="left__location">
<div class="location__poster">
<i class="fa fa-location-dot"></i>
</div>
<div class="location__text">
<p>Deliver to</p>
<h3>Zimbabwe</h3>
</div>
</div>
</div>
<div class="top-menu__middle">
<select name="department" class="choose">
<option value="all" selected>All Departments</option>
<option value="arts-and-crafts">Arts & Crafts</option>
<option value="automotive">Automotive</option>
<option value="baby">Baby</option>
<option value="beauty-and-personal-care">
Beauty & Personal Care
</option>
<option value="books">Books</option>
<option value="boys-fashion">Boys' Fashion</option>
<option value="computers">Computers</option>
<option value="deals">Deals</option>
<option value="digital-music">Digital Music</option>
<option value="electronics">Electronics</option>
<option value="girls-fashion">Girls' Fashion</option>
<option value="health-and-household">Health & Household</option>
<option value="home-and-kitchen">Home & Kitchen</option>
<option value="industrial-and-scientific">
Industrial & Scientific
</option>
<option value="kindle-store">Kindle Store</option>
<option value="luggage">Luggage</option>
<option value="mens-fashion">Men's Fashion</option>
<option value="movies-and-tv">Movies & TV</option>
<option value="music-cds-and-vinyl">Music, CDs & Vinyl</option>
<option value="pet-supplies">Pet Supplies</option>
<option value="prime-video">Prime Video</option>
<option value="software">Software</option>
<option value="sports-and-outdoors">Sports & Outdoors</option>
<option value="tools-and-home-improvement">
Tools & Home Improvement
</option>
<option value="toys-and-Games">Toys & Games</option>
<option value="video-games">Video Games</option>
<option value="womens-fashion">Women's Fashion</option>
</select>
<input type="text" name="feild" placeholder="Search Amazon" />
<button class="middle__search-icon">
<i class="fa fa-magnifying-glass"></i>
</button>
</div>
<div class="top-menu__right">
<div class="right__language">
<div class="poster">
<img src="assets/united-states.png" alt="United state flag" />
</div>
<p>EN <i class="fa fa-caret-down"></i></p>
<div class="language__list">
<div class="menu-arrow"></div>
<div class="language-menu">
<div>
<p>Change language</p>
<a href="#">Learn more</a>
</div>
<ul>
<li>
<input
type="radio"
id="eng"
name="lang"
value="eng"
checked
/><label for="eng">English - EN</label>
</li>
<li>
<input type="radio" id="es" name="lang" value="es" /><label
for="es"
>español - ES</label
>
</li>
<li>
<input type="radio" id="ar" name="lang" value="ar" /><label
for="ar"
>العربية - AR</label
>
</li>
<li>
<input type="radio" id="de" name="lang" value="de" /><label
for="de"
>Deutsch - DE</label
>
</li>
<li>
<input type="radio" id="he" name="lang" value="he" /><label
for="he"
>עברית - HE</label
>
</li>
<li>
<input type="radio" id="ko" name="lang" value="ko" /><label
for="ko"
>한국어 - KO</label
>
</li>
<li>
<input type="radio" id="pt" name="lang" value="pt" /><label
for="pt"
>português - PT</label
>
</li>
<li>
<input type="radio" id="zh" name="lang" value="zh" /><label
for="zh"
>中文 (简体) - ZH</label
>
</li>
<li>
<input
type="radio"
id="zh2"
name="lang"
value="zh2"
/><label for="zh2">中文 (繁體) - ZH</label>
</li>
</ul>
<div>
<p>Change currency</p>
<div>
<a href="#">Learn more</a>
</div>
</div>
<div>
<p>$ USD - US Dollar</p>
<div>
<a href="#">change</a>
</div>
</div>
<div>
<div>
<img
src="assets/united-states.png"
alt="USA flag"
loading="lazy"
/>
</div>
<p>You are shopping on Amazon.com</p>
</div>
<div>
<a href="#">Change country/region</a>
</div>
</div>
</div>
</div>
<div class="right__signin">
<p>Hello, sign in</p>
<h3>Account & Lists <i class="fa fa-caret-down"></i></h3>
<div class="signin__list">
<div class="menu-arrow"></div>
<div class="signin-menu">
<div class="signin__action">
<button>Sign in</button>
<p>New Customer? <a href="#">Start here</a></p>
</div>
<div class="signin__options">
<h3>Your Account</h3>
<ul>
<li>Account</li>
<li>Orders</li>
<li>Recommendations</li>
<li>Browsing History</li>
<li>Watchlist</li>
<li>Video Purchases & Rentals</li>
<li>Kindle Unlimited</li>
<li>Content & Devices</li>
<li>Subscribe & Save Items</li>
<li>Memberships & Subscriptions</li>
<li>Music Library</li>
</ul>
</div>
</div>
</div>
</div>
<div class="right__orders">
<p>Returns</p>
<h3>& Orders</h3>
</div>
<div class="right__cart">
<p><span>0</span> <i class="fa fa-cart-shopping"></i> Cart</p>
</div>
</div>
</nav>
<!-- Main menu bar -->
<nav class="main-menu">
<ul class="shopping-nav">
<li>
<div class="shopping-nav__all">
<i class="fa fa-bars"></i>
<p>All</p>
<!-- Modal Structure -->
<input
type="radio"
class="open-modal"
name="toggle"
value="open"
/>
<input
type="radio"
class="close-modal"
name="toggle"
value="close"
/>
<div class="modal__overlay">
<i class="fa fa-xmark fa-2x"></i>
</div>
<div class="signin-modal">
<div class="signin-modal__title">
<div class="title__avatar">
<i class="fa fa-circle-user fa-2x"></i>
</div>
<p>Hello, sign in</p>
</div>
<div class="signin-modal__content">
<div class="content__section">
<h3>Digital Content & Devices</h3>
<ul>
<li>Amazon Music <i class="fa fa-chevron-right"></i></li>
<li>
Kindle E-readers & Books
<i class="fa fa-chevron-right"></i>
</li>
<li>
Amazon Appstore <i class="fa fa-chevron-right"></i>
</li>
</ul>
</div>
<div class="content__section see">
<h3>Shop By Department</h3>
<ul>
<li>Electronics <i class="fa fa-chevron-right"></i></li>
<li>Computers <i class="fa fa-chevron-right"></i></li>
<li>Smart Home <i class="fa fa-chevron-right"></i></li>
<li>Arts & Crafts <i class="fa fa-chevron-right"></i></li>
<li>See All <i class="fa fa-chevron-down"></i></li>
</ul>
</div>
<div class="content__section see">
<h3>Programs & Features</h3>
<ul>
<li>Gift Cards <i class="fa fa-chevron-right"></i></li>
<li>
Shop By Interest <i class="fa fa-chevron-right"></i>
</li>
<li>Amazon Live <i class="fa fa-chevron-right"></i></li>
<li>
International Shopping
<i class="fa fa-chevron-right"></i>
</li>
<li>See All <i class="fa fa-chevron-down"></i></li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li>Today's Deals</li>
<li>Customer Service</li>
<li>Registry</li>
<li>Gift Crds</li>
<li>Sell</li>
</ul>
<p>Shop great deals now</p>
</nav>
</header>
<!-- Start Main Content -->
<main>
<!-- Landing Structure -->
<section class="landing">
<div class="carousel">
<input
type="radio"
name="slide"
value="previous"
class="previous__slide"
/>
<input type="radio" name="slide" value="next" class="next__slide" />
<div class="previous-button">
<i class="fa fa-chevron-left fa-3x"></i>
</div>
<div class="next-button">
<i class="fa fa-chevron-right fa-3x"></i>
</div>
<div class="slider">
<div class="landing__card">
<img
src="assets/landing/landing01.jpg"
alt="Shop toys and games"
loading="lazy"
/>
</div>
<div class="landing__card">
<img
src="assets/landing/landing02.jpg"
alt="Ship products marketing"
loading="lazy"
/>
</div>
</div>
</div>
</section>
<!-- Products by category structure -->
<section class="card-wrapper category">
<article class="card">
<h3>Gaming accessories</h3>
<div class="card__poster multi">
<figure>
<img
src="assets/category/gaming/gaming-product01.jpg"
alt="Headsets"
loading="lazy"
/>
<figcaption>Headsets</figcaption>
</figure>
<figure>
<img
src="assets/category/gaming/gaming-product02.jpg"
alt="Keyboards"
loading="lazy"
/>
<figcaption>Keyboards</figcaption>
</figure>
<figure>
<img
src="assets/category/gaming/gaming-product03.jpg"
alt="Computer mice"
loading="lazy"
/>
<figcaption>Computer mice</figcaption>
</figure>
<figure>
<img
src="assets/category/gaming/gaming-product04.jpg"
alt="Chairs"
loading="lazy"
/>
<figcaption>Chairs</figcaption>
</figure>
</div>
<div class="card__link">
<a href="#">See more</a>
</div>
</article>
<article class="card">
<h3>Deals & Promotions</h3>
<div class="card__poster">
<img
src="assets/category/deals-and-promotions.jpg"
alt="Deals and promotions"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<article class="card">
<h3>Beauty picks</h3>
<div class="card__poster">
<img
src="assets/category/beauty-picks.jpg"
alt="Beauty picks"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<article class="card marketing">
<div class="card__poster">
<img
src="assets/category/ship-products.jpg"
alt="We ship 45 million products around the world"
loading="lazy"
/>
</div>
<h3>Sign in for the best experience</h3>
<div class="card__btn">
<button>Sign in securely</button>
</div>
</article>
<article class="card">
<h3>Health & Personal Care</h3>
<div class="card__poster">
<img
src="assets/category/health-and-personal-care.jpg"
alt="Health and personal care"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<article class="card">
<h3>Get fit at home</h3>
<div class="card__poster">
<img
src="assets/category/get-fit-at-home.jpg"
alt="Get fit at home"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Explore now</a>
</div>
</article>
<article class="card">
<h3>Dresses</h3>
<div class="card__poster">
<img
src="assets/category/dresses.jpg"
alt="Get fit at home"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<article class="card">
<h3>Shop by Category</h3>
<div class="card__poster multi">
<figure>
<img
src="assets/category/shop-by-category/computers-and-accessories.jpg"
alt="Computers and accessories"
loading="lazy"
/>
<figcaption>Computers & Accessories</figcaption>
</figure>
<figure>
<img
src="assets/category/shop-by-category/video-games.jpg"
alt="Video games"
loading="lazy"
/>
<figcaption>Video Games</figcaption>
</figure>
<figure>
<img
src="assets/category/shop-by-category/baby.jpg"
alt="Baby"
loading="lazy"
/>
<figcaption>Baby</figcaption>
</figure>
<figure>
<img
src="assets/category/shop-by-category/toys-and-games.jpg"
alt="Toys and games"
loading="lazy"
/>
<figcaption>Toys & Games</figcaption>
</figure>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<article class="card">
<h3>Electronics</h3>
<div class="card__poster">
<img
src="assets/category/electronics.jpg"
alt="Electronics"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">See more</a>
</div>
</article>
<div class="separator"></div>
</section>
<!-- Popular items structure -->
<section class="items-wrapper">
<h3>Popular items this season</h3>
<div class="carousel small">
<input
type="radio"
name="popular-items"
value="previous"
class="previous__slide"
/>
<input
type="radio"
name="popular-items"
value="next"
class="next__slide"
/>
<div class="previous-button">
<i class="fa fa-chevron-left fa-3x"></i>
</div>
<div class="next-button">
<i class="fa fa-chevron-right fa-3x"></i>
</div>
<div class="slider">
<div class="items-group">
<div class="item">
<img
src="assets/popular-items/superintelligence-paths-dangers-strategies.jpg"
alt="Superintelligence paths dangers strategies"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/what-we-owe-the-future.jpg"
alt="What we owe the future"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/the-ape-that-understood-the-universe-how-the-mind-and-culture-evolve.jpg"
alt="The ape that understood the universe how the mind and culture evolve"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/collective-illusions-conformity-complicity-and-the-science-of-why-we-make-bad-decisions.jpg"
alt="Collective illusions conformity complicity and the science of why we make bad decisions"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/doing-good-better-how-effective-altruism-can-help-you-help-others-do-work-that-matters-and-make-smarter-choices.jpg"
alt="Doing good better how effective altruism can help you help others do work that matters and make smarter choices"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/80000-hours-find-a-fulfilling-career-that-does-good.jpg"
alt="80000 hours find a fulfilling career that does good"
loading="lazy"
/>
</div>
</div>
<div class="items-group">
<div class="item">
<img
src="assets/popular-items/the-scout-mindset-why-some-people-see-things-clearly-and-others-dont.jpg"
alt="The scout mindset why some people see things clearly and others dont"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/designing-the-mind-the-principles-of-psychitecture.jpg"
alt="Designing the mind the principles of psychitecture"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/what-makes-us-human-an-artificial-intelligence-answers-lifes-biggest-questions.jpg"
alt="What makes us human an artificial intelligence answers lifes biggest questions"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/the-alignment-problem-machine-learning-and-human-values.jpg"
alt="The alignment problem machine learning and human values"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/the-age-of-ai-and-our-human-future.jpg"
alt="The age of ai and our human future"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/popular-items/the-big-picture-on-the-origins-of-life-meaning-and-the-universe-itself.jpg"
alt="The big picture on the origins of life meaning and the universe itself"
loading="lazy"
/>
</div>
</div>
</div>
</div>
<div class="separator main"></div>
</section>
<!-- Top seller structure -->
<section class="items-wrapper">
<h3>Top Sellers in Books for you</h3>
<div class="carousel small">
<input
type="radio"
name="top-sellers"
value="previous"
class="previous__slide"
/>
<input
type="radio"
name="top-sellers"
value="next"
class="next__slide"
/>
<div class="previous-button">
<i class="fa fa-chevron-left fa-3x"></i>
</div>
<div class="next-button">
<i class="fa fa-chevron-right fa-3x"></i>
</div>
<div class="slider">
<div class="items-group">
<div class="item">
<img
src="assets/top-sellers/to-the-ends-of-the-earth-building-a-national-missionary-sending-structure.jpg"
alt="To the ends of the earth building a national missionary sending structure"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/earth-day-expressions-from-the-soul-warwick-academy-primary-school-students-share-thei-views-on-environmental.jpg"
alt="Earth day expressions from the soul warwick academy primary school students share their views on environmental"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/trini-talk-a-dictionary-of-words-and-proverbs-of-trinidad-and-tobago.jpg"
alt="Trini talk a dictionary of words and proverbs of trinidad and tobago"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/news-muse-humorous-poems-inspired-by-strange-news.jpg"
alt="News muse humorous poems inspired by strange news"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/more-than-bargained-for-praying-at-a-higher-level.jpg"
alt="More than bargained for praying at a higher level"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/machimaho-i-messed-up-and-made-the-wrong-person-into-a-magical-girl-vol-12.jpg"
alt="Machimaho-i-messed-up-and-made-the-wrong-person-into-a-magical-girl-vol-12"
loading="lazy"
/>
</div>
</div>
<div class="items-group">
<div class="item">
<img
src="assets/top-sellers/The-parenting-map-step-by-step-solutions-to-consciously-create-the-ultimate-parent-child-relationship.jpg"
alt="The parenting map step-by-step solutions to consciously create the ultimate parent-child relationship"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/purposeful-power-breakthrough-7-strategies-for-creating-your-purposeful-passionate-and-positive-life.jpg"
alt="Purposeful power breakthrough 7 strategies for creating your purposeful, passionate, and positive life"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/essence-toda-historia-tiene-dos-caras-spanish-edition.jpg"
alt="Essence toda historia tiene dos caras (Spanish Edition)"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/extreme-ownership-how-u.s.navy-seals-lead-and-win-new-edition.jpg"
alt="Extreme ownership how U.S. Navy seals lead and win (New Edition)"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/sex-you-and-food.jpg"
alt="Sex you and food"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers/friends-of-misfortune-a-witty-feel-good-page-turner-about-third-chances-with-a-compelling-description-of-the-gamblers.jpg"
alt="Friends of misfortune A witty, feel-good page-turner about third chances with a compelling description of the gambler's"
loading="lazy"
/>
</div>
</div>
</div>
</div>
<div class="separator main"></div>
</section>
<!-- Products Cards part 1 Structure -->
<section class="card-wrapper">
<article class="card">
<h3>New arrivals in Toys</h3>
<div class="card__poster">
<img
src="assets/products-cards/new-arrivals-in-toys.jpg"
alt="New arrivals in toys"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<article class="card">
<h3>For your Fitness Needs</h3>
<div class="card__poster">
<img
src="assets/products-cards/for-your-fitness-needs.jpg"
alt="For your fitness needs"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<article class="card">
<h3>Shop activity trackers and smartwatches</h3>
<div class="card__poster">
<img
src="assets/products-cards/shop-activity-trackers-and-smartwatches.jpg"
alt="Shop activity trackers and smartwatches"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<article class="card">
<h3>Kindle E readers</h3>
<div class="card__poster">
<img
src="assets/products-cards/shop-kindle-e-readers-ships-from-and-sold-by-amazon-us.jpg"
alt="Shop kindle E-readers. Ships from and sold by Amazon US."
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<div class="separator main"></div>
</section>
<!-- Start beauty internationally -->
<section class="items-wrapper static">
<h3>Popular products in Beauty internationally</h3>
<div class="items-group">
<div class="item">
<img
src="assets/beauty-internationally/mielle-organics-rosemary-mint-scalp.jpg"
alt="Mielle organics rosemary mint scalp and hair strengthening oil with biotin and essential oils"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/beauty-internationally/crest-3D-white-toothpaste-advanced-luminous-mint-teeth-whitening-toothpaste.jpg"
alt="Crest 3D white toothpaste advanced luminous mint teeth whitening toothpaste"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/beauty-internationally/cerave-am-facial-moisturizing-lotion.jpg"
alt="Cerave AM facial moisturizing lotion"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/beauty-internationally/cerave-retinol-serum-for-post-acne-marks-and-skin-texture.jpg"
alt="Cerave retinol serum for post-acne marks and skin texture"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/beauty-internationally/crest-3D-whitestrips-brilliance-white-32-strips.jpg"
alt="Crest 3D whitestrips brilliance white, 32 strips"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/beauty-internationally/colgate-max-fresh-wisp-disposable-mini-travel-toothbrushes.jpg"
alt="Colgate Max Fresh Wisp Disposable Mini Travel Toothbrushes"
loading="lazy"
/>
</div>
</div>
<div class="separator main"></div>
</section>
<!-- Start home top sellers -->
<section class="items-wrapper static">
<h3>International top sellers in Home</h3>
<div class="items-group">
<div class="item">
<img
src="assets/top-sellers-in-home/fetti-kids-donut-nail-stickers.jpg"
alt="Fetti kids donut nail stickers"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers-in-home/island-falls-home-zen-garden-kit.jpg"
alt="Island falls home zen garden kit"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers-in-home/akcisot-wall-clock.jpg"
alt="AKCISOT wall clock"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers-in-home/a-decorative-jewelry-dish-tray.jpg"
alt="A Decorative jewelry dish tray"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers-in-home/sancua-round-table.jpg"
alt="Sancua round table"
loading="lazy"
/>
</div>
<div class="item">
<img
src="assets/top-sellers-in-home/mybbshower-colorful-fiesta-paper-flowers.jpg"
alt="Mybbshower Colorful Fiesta Paper Flowers"
loading="lazy"
/>
</div>
</div>
<div class="separator main"></div>
</section>
<!-- Products Cards part 2 Structure -->
<section class="card-wrapper">
<article class="card">
<h3>Shop Laptops & Tablets</h3>
<div class="card__poster">
<img
src="assets/products-cards/shop-laptops-and-tablets.jpg"
alt="Shop laptops and tablets"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">See more</a>
</div>
</article>
<article class="card">
<h3>Create with strip lights</h3>
<div class="card__poster">
<img
src="assets/products-cards/create-with-strip-lights.jpg"
alt="Create with strip lights"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">Shop now</a>
</div>
</article>
<article class="card">
<h3>Gaming merchandise</h3>
<div class="card__poster multi">
<figure>
<img
src="assets/products-cards/apparel.jpg"
alt="Apparel"
loading="lazy"
/>
<figcaption>Apparel</figcaption>
</figure>
<figure>
<img
src="assets/products-cards/hats.jpg"
alt="Hats"
loading="lazy"
/>
<figcaption>Hats</figcaption>
</figure>
<figure>
<img
src="assets/products-cards/action-figures.jpg"
alt="Action figures"
loading="lazy"
/>
<figcaption>Action figures</figcaption>
</figure>
<figure>
<img
src="assets/products-cards/mugs.jpg"
alt="Mugs"
loading="lazy"
/>
<figcaption>Mugs</figcaption>
</figure>
</div>
<div class="card__link">
<a href="#">See more</a>
</div>
</article>
<article class="card">
<h3>Shop Pet supplies</h3>
<div class="card__poster">
<img
src="assets/products-cards/shop-pet-supplies.jpg"
alt="Shop pet supplies"
loading="lazy"
/>
</div>
<div class="card__link">
<a href="#">See more</a>
</div>
</article>
<div class="separator main"></div>
</section>
<!-- Start top sellers in baby products -->
<section class="items-wrapper static">
<h3>Top Sellers in Baby Products for you</h3>
<div class="items-group">
<div class="item">
<img
src="assets/baby-products/uraqt-neti-pot-nasal-rinse-kit-nose-wash-cleaner.jpg"
alt="URAQT neti pot nasal rinse kit nose wash cleaner"
loading="lazy"
/>
</div>