-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1048 lines (989 loc) · 39.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 charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PoshStorm</title>
<link rel="stylesheet" href="index.css">
<link rel="icon" href="home_images/favicon.ico">
</head>
<body>
<header>
<div class="top">
<h4 class><b>Shipping outside of the U.S. or Canada? </b><a
href="https://www.nordstrom.com/browse/customer-service/international-orders?jid=j011535-13614&cid=00000&cm_sp=merch-_-multi-div_13614_j011535-_-swptcos_corp_persnav_info&#anchor-link-shipping-charges">Learn
About International Shipping</a></h4>
<div class="country"><img src="home_images/india.png" alt=""><b><u>INDIA</u></b></div>
</div>
<div class="firstnav">
<div class="logo"><a href="./index.html"><img src="home_images/logo 4.png" alt=""></a></div>
<div class="search">
<img id="searchicon" src="home_images/search.png" alt="">
<input id="searchfun" type="text" placeholder="Search for products or brands">
</div>
<div class="sign">
<a href="./signIn.html"> Sign In</a>
<div class="hovering1">
<button><b>Sign In|Create Account</b></button>
<hr>
<h3><b>Your Account</b></h3>
<hr>
<div class="youracc1">Purchase</div>
<hr>
<div class="youracc2">Wish List</div>
<hr>
<div class="youracc3">The Poshy Club Rewards</div>
<hr>
<div class="youracc4">Shipping Address</div>
<hr>
<div class="youracc5">Payment Methods</div>
<hr>
<div class="youracc6">Your Stylist</div>
<hr>
<div class="youracc7">Pay & Manage Poshstorm</div>
</div>
</div>
<div class="store">
<a href="#"><img src="home_images/shopping-bag.png" alt="">Store</a>
</div>
<div class="purchase">
<a href="#"><img src="home_images/cart.png" alt="">Purchase</a>
</div>
<div class="cart">
<a id="numOfItemInCart" href="./addToBag.html"><img src="home_images/shopping-cart.png" alt="">0</a>
</div>
</div>
<hr>
</header>
<div class="main">
<div class="firstmain">
<div id="dropper1">Holiday Gifts</div>
<div id="dropper2">Holiday Deals</div>
<div id="dropper3">Women</div>
<div id="dropper4">Men</div>
<div id="dropper5">Kids</div>
<div id="dropper6">Young Adult</div>
<div id="dropper7">Beauty</div>
<div id="dropper8">Designer</div>
</div>
<div class="droparr">
<div id="drop1">
<div class="drop1a">
<h3><b>Holiday Gifts:Get <br>Inspired</b></h3>
<hr>
<h3><b>Holiday Decor</b></h3>
<h3><b>Stocking Stuffer</b></h3>
<h3><b>Beauty Gifts</b></h3>
<h3><b>Cozy Gifts</b></h3>
<h3><b>Toys & Games</b></h3>
<h3><b>Holiday Pajamas & <br>Slippers </b></h3>
<h3><b>UGG Shop</b></h3>
<h3><b>Make it POP</b></h3>
</div>
<div class="drop1b">
<p><b>All Gifts</b></p>
<p>Gifts for Her</p>
<p>Gifts for Him</p>
<p>Gifts for Teens</p>
<p>Gifts for Kids</p>
<p>Gifts for Babies</p>
<p>Gifts for Pets</p>
<p>Gifts for the Home</p>
</div>
<div class="drop1c">
<p><b>Gifts by Price</b></p>
<p>Gifts on Sale</p>
<p>Gifts Under $50</p>
<p>Gifts Under $100</p>
<p>Luxe Gifts</p>
</div>
<div class="drop1d">
<p><b>Gifts by Recipient</b></p>
<p>For the Party Host</p>
<p>For the Foodie</p>
<p>For the Jewelry Lover</p>
<p>For the Adventurer</p>
<p>For the Techie</p>
<p>For the Sports Fan</p>
</div>
<div class="drop1e">
<p><b>Holiday Help</b></p>
<p>Free Pickup & Delivery</p>
<p>Gifts Cards</p>
<p>Style Help</p>
<p>Festive Events</p>
<br>
<p><b>Gifts Guide</b></p>
<p>Cozy Gifts Ideas</p>
<p>Gifts for Coffee Lover</p>
<p>Gifts for Dogs Lover</p>
</div>
</div>
<div id="drop2">
<div class="drop2a">
<h3><b>Holiday Deals: <br><a href="./new_arrivals.html">New Arrival</a></b></h3>
<hr>
<h3><b>Cozy Deals Under $100</b></h3>
<h3><b>Sweaters as Low as $29</b></h3>
<h3><b>Boots Up to 60% Off*</b></h3>
<h3><b>Bestseller</b></h3>
<h3><b>Limited-Time Sale</b></h3>
<h3><b>New Markdowns</b></h3>
<h3><b>Gifts On Sale</b></h3>
</div>
<div class="drop2b">
<h3>Women</h3>
<p>New Markdowns</p>
<p>Clothing</p>
<p>Shoes</p>
<p>Handbags & Wallets</p>
<p>Jewelry</p>
<p>Accessories</p>
<p>Contemporary</p>
<p>Designer</p>
<br>
<br>
<p>Pluts</p>
<p>Petite</p>
<p>Maternity</p>
<p>Juniors</p>
</div>
<div class="drop2c">
<h3>Men</h3>
<p>New Markdowns</p>
<p>Clothing</p>
<p>Shoes</p>
<p>Handbags & Wallets</p>
<p>Jewelry</p>
<p>Accessories</p>
<p>Contemporary</p>
<p>Designer</p>
<br>
<br>
<h3>Designer</h3>
<p>Women</p>
<p>Men</p>
<p>Kids</p>
</div>
<div class="drop2d">
<h3>Kids</h3>
<p>New Markdowns</p>
<p>Girls</p>
<p>Boys</p>
<p>Baby</p>
<p>Baby Gear & Essentials</p>
<p>Shoes</p>
<p>Toys</p>
<br>
<br>
<h3>Young Adults</h3>
<p>Women</p>
<p>Men</p>
</div>
<div class="drop2e">
<h3>Home</h3>
<p>Bath</p>
<p>Bedding</p>
<p>Home Decor</p>
<p>Luggage & Travel</p>
<p>Tablets & Kitchen</p>
<br>
<h3>Beauty</h3>
<br>
<h3>Cold Weather</h3>
<br>
<h3>All Sales</h3>
</div>
</div>
<div id="drop3">
<div class="drop3a">
<h3>Women:Get Inspired</h3>
<hr>
<h3>New Arrival</h3>
<h3>Holiday Deals</h3>
<h3>Contemporary</h3>
<h3>NordStorm Made</h3>
<h3>Shop By Trend</h3>
<h3>Sports Fan Shop</h3>
<h3>Sustainable Style</h3>
</div>
<div class="drop3b">
<h3>Clothing</h3>
<p>Activewear</p>
<p>Blazers,Suits&Separates</p>
<p>Coats & Jackets</p>
<p>Dresses</p>
<p>Jeans & Denim</p>
<p>Jumpsuits & Rompers</p>
<p>Loungewear</p>
<p>Pants & Leggings</p>
<p>Skirts</p>
</div>
<div class="drop3c">
<h3>Shoes</h3>
<p>Booters</p>
<p>Boots</p>
<p>Clogs</p>
<p>Comfort</p>
<p>Dress Shoes</p>
<p>Flats</p>
<p>Heels</p>
<p>Mules & Slides</p>
<p>Oxfords & Loafers</p>
<p>Running Shoes</p>
<p>Sandals</p>
<p>Slippers</p>
<p>Sneakers & Athletic</p>
</div>
<div class="drop3d">
<h3>Handbags</h3>
<p>BAckpacks</p>
<p>Belt Bags</p>
<p>Clutches & Pouches</p>
<p>Crossbody Bags</p>
<p>Designer Bags</p>
<p>Shoulder Bags</p>
<br>
<h3>Luggage & Travel</h3>
<br>
<h3>Accessories</h3>
<p>Belts</p>
<p>Gloves & Mittens</p>
<p>Hats</p>
<p>Scarves & Wraps</p>
</div>
<div class="drop3e">
<h3>Jewelry</h3>
<p>Bracelets</p>
<p>Earring</p>
<p>Necklaces</p>
<p>Rings</p>
<p>Watches</p>
<br>
<h3>Fine Jewelry</h3>
<p>Engagement & Wedding</p>
<p>Exprience Fine Jewelery</p>
<br>
<h3>Top Brands</h3>
<br>
<p>ASOS</p>
<p>Free People</p>
<p>Madewell</p>
<p>SKIMS</p>
</div>
</div>
<div id="drop4">
<div class="drop2a">
<h3><b>Holiday Deals: <br>Get Inspired</b></h3>
<hr>
<h3><b>Cozy Deals Under $100</b></h3>
<h3><b>Sweaters as Low as $29</b></h3>
<h3><b>Boots Up to 60% Off*</b></h3>
<h3><b>Bestseller</b></h3>
<h3><b>Limited-Time Sale</b></h3>
<h3><b>New Markdowns</b></h3>
<h3><b>Gifts On Sale</b></h3>
</div>
<div class="drop2b">
<h3>Women</h3>
<p>New Markdowns</p>
<p>Clothing</p>
<p>Shoes</p>
<p>Handbags & Wallets</p>
<p>Jewelry</p>
<p>Accessories</p>
<p>Contemporary</p>
<p>Designer</p>
<br>
<br>
<p>Pluts</p>
<p>Petite</p>
<p>Maternity</p>
<p>Juniors</p>
</div>
<div class="drop2c">
<h3>Men</h3>
<p>New Markdowns</p>
<p>Clothing</p>
<p>Shoes</p>
<p>Handbags & Wallets</p>
<p>Jewelry</p>
<p>Accessories</p>
<p>Contemporary</p>
<p>Designer</p>
<br>
<br>
<h3>Designer</h3>
<p>Women</p>
<p>Men</p>
<p>Kids</p>
</div>
<div class="drop2d">
<h3>Kids</h3>
<p>New Markdowns</p>
<p>Girls</p>
<p>Boys</p>
<p>Baby</p>
<p>Baby Gear & Essentials</p>
<p>Shoes</p>
<p>Toys</p>
<br>
<br>
<h3>Young Adults</h3>
<p>Women</p>
<p>Men</p>
</div>
<div class="drop2e">
<h3>Home</h3>
<p>Bath</p>
<p>Bedding</p>
<p>Home Decor</p>
<p>Luggage & Travel</p>
<p>Tablets & Kitchen</p>
<br>
<h3>Beauty</h3>
<br>
<h3>Cold Weather</h3>
<br>
<h3>All Sales</h3>
</div>
</div>
<div id="drop5">
<div class="drop1a">
<h3><b>Holiday Gifts:Get <br>Inspired</b></h3>
<hr>
<h3><b>Holiday Decor</b></h3>
<h3><b>Stocking Stuffer</b></h3>
<h3><b>Beauty Gifts</b></h3>
<h3><b>Cozy Gifts</b></h3>
<h3><b>Toys & Games</b></h3>
<h3><b>Holiday Pajamas & <br>Slippers </b></h3>
<h3><b>UGG Shop</b></h3>
<h3><b>Make it POP</b></h3>
</div>
<div class="drop1b">
<p><b>All Gifts</b></p>
<p>Gifts for Her</p>
<p>Gifts for Him</p>
<p>Gifts for Teens</p>
<p>Gifts for Kids</p>
<p>Gifts for Babies</p>
<p>Gifts for Pets</p>
<p>Gifts for the Home</p>
</div>
<div class="drop1c">
<p><b>Gifts by Price</b></p>
<p>Gifts on Sale</p>
<p>Gifts Under $50</p>
<p>Gifts Under $100</p>
<p>Luxe Gifts</p>
</div>
<div class="drop1d">
<p><b>Gifts by Recipient</b></p>
<p>For the Party Host</p>
<p>For the Foodie</p>
<p>For the Jewelry Lover</p>
<p>For the Adventurer</p>
<p>For the Techie</p>
<p>For the Sports Fan</p>
</div>
<div class="drop1e">
<p><b>Holiday Help</b></p>
<p>Free Pickup & Delivery</p>
<p>Gifts Cards</p>
<p>Style Help</p>
<p>Festive Events</p>
<br>
<p><b>Gifts Guide</b></p>
<p>Cozy Gifts Ideas</p>
<p>Gifts for Coffee Lover</p>
<p>Gifts for Dogs Lover</p>
</div>
</div>
<div id="drop6">
<div class="drop3a">
<h3>Women:Get Inspired</h3>
<hr>
<h3>New Arrival</h3>
<h3>Holiday Deals</h3>
<h3>Contemporary</h3>
<h3>NordStorm Made</h3>
<h3>Shop By Trend</h3>
<h3>Sports Fan Shop</h3>
<h3>Sustainable Style</h3>
</div>
<div class="drop3b">
<h3>Clothing</h3>
<p>Activewear</p>
<p>Blazers,Suits&Separates</p>
<p>Coats & Jackets</p>
<p>Dresses</p>
<p>Jeans & Denim</p>
<p>Jumpsuits & Rompers</p>
<p>Loungewear</p>
<p>Pants & Leggings</p>
<p>Skirts</p>
</div>
<div class="drop3c">
<h3>Shoes</h3>
<p>Booters</p>
<p>Boots</p>
<p>Clogs</p>
<p>Comfort</p>
<p>Dress Shoes</p>
<p>Flats</p>
<p>Heels</p>
<p>Mules & Slides</p>
<p>Oxfords & Loafers</p>
<p>Running Shoes</p>
<p>Sandals</p>
<p>Slippers</p>
<p>Sneakers & Athletic</p>
</div>
<div class="drop3d">
<h3>Handbags</h3>
<p>BAckpacks</p>
<p>Belt Bags</p>
<p>Clutches & Pouches</p>
<p>Crossbody Bags</p>
<p>Designer Bags</p>
<p>Shoulder Bags</p>
<br>
<h3>Luggage & Travel</h3>
<br>
<h3>Accessories</h3>
<p>Belts</p>
<p>Gloves & Mittens</p>
<p>Hats</p>
<p>Scarves & Wraps</p>
</div>
<div class="drop3e">
<h3>Jewelry</h3>
<p>Bracelets</p>
<p>Earring</p>
<p>Necklaces</p>
<p>Rings</p>
<p>Watches</p>
<br>
<h3>Fine Jewelry</h3>
<p>Engagement & Wedding</p>
<p>Exprience Fine Jewelery</p>
<br>
<h3>Top Brands</h3>
<br>
<p>ASOS</p>
<p>Free People</p>
<p>Madewell</p>
<p>SKIMS</p>
</div>
</div>
<div id="drop7">
<div class="drop2a">
<h3><b>Holiday Deals: <br>Get Inspired</b></h3>
<hr>
<h3><b>Cozy Deals Under $100</b></h3>
<h3><b>Sweaters as Low as $29</b></h3>
<h3><b>Boots Up to 60% Off*</b></h3>
<h3><b>Bestseller</b></h3>
<h3><b>Limited-Time Sale</b></h3>
<h3><b>New Markdowns</b></h3>
<h3><b>Gifts On Sale</b></h3>
</div>
<div class="drop2b">
<h3>Women</h3>
<p>New Markdowns</p>
<p>Clothing</p>
<p>Shoes</p>
<p>Handbags & Wallets</p>
<p>Jewelry</p>
<p>Accessories</p>
<p>Contemporary</p>
<p>Designer</p>
<br>
<br>
<p>Pluts</p>
<p>Petite</p>
<p>Maternity</p>
<p>Juniors</p>
</div>
<div class="drop2c">
<h3>Men</h3>
<p>New Markdowns</p>
<p>Clothing</p>
<p>Shoes</p>
<p>Handbags & Wallets</p>
<p>Jewelry</p>
<p>Accessories</p>
<p>Contemporary</p>
<p>Designer</p>
<br>
<br>
<h3>Designer</h3>
<p>Women</p>
<p>Men</p>
<p>Kids</p>
</div>
<div class="drop2d">
<h3>Kids</h3>
<p>New Markdowns</p>
<p>Girls</p>
<p>Boys</p>
<p>Baby</p>
<p>Baby Gear & Essentials</p>
<p>Shoes</p>
<p>Toys</p>
<br>
<br>
<h3>Young Adults</h3>
<p>Women</p>
<p>Men</p>
</div>
<div class="drop2e">
<h3>Home</h3>
<p>Bath</p>
<p>Bedding</p>
<p>Home Decor</p>
<p>Luggage & Travel</p>
<p>Tablets & Kitchen</p>
<br>
<h3>Beauty</h3>
<br>
<h3>Cold Weather</h3>
<br>
<h3>All Sales</h3>
</div>
</div>
<div id="drop8">
<div class="drop1a">
<h3><b>Holiday Gifts:Get <br>Inspired</b></h3>
<hr>
<h3><b>Holiday Decor</b></h3>
<h3><b>Stocking Stuffer</b></h3>
<h3><b>Beauty Gifts</b></h3>
<h3><b>Cozy Gifts</b></h3>
<h3><b>Toys & Games</b></h3>
<h3><b>Holiday Pajamas & <br>Slippers </b></h3>
<h3><b>UGG Shop</b></h3>
<h3><b>Make it POP</b></h3>
</div>
<div class="drop1b">
<p><b>All Gifts</b></p>
<p>Gifts for Her</p>
<p>Gifts for Him</p>
<p>Gifts for Teens</p>
<p>Gifts for Kids</p>
<p>Gifts for Babies</p>
<p>Gifts for Pets</p>
<p>Gifts for the Home</p>
</div>
<div class="drop1c">
<p><b>Gifts by Price</b></p>
<p>Gifts on Sale</p>
<p>Gifts Under $50</p>
<p>Gifts Under $100</p>
<p>Luxe Gifts</p>
</div>
<div class="drop1d">
<p><b>Gifts by Recipient</b></p>
<p>For the Party Host</p>
<p>For the Foodie</p>
<p>For the Jewelry Lover</p>
<p>For the Adventurer</p>
<p>For the Techie</p>
<p>For the Sports Fan</p>
</div>
<div class="drop1e">
<p><b>Holiday Help</b></p>
<p>Free Pickup & Delivery</p>
<p>Gifts Cards</p>
<p>Style Help</p>
<p>Festive Events</p>
<br>
<p><b>Gifts Guide</b></p>
<p>Cozy Gifts Ideas</p>
<p>Gifts for Coffee Lover</p>
<p>Gifts for Dogs Lover</p>
</div>
</div>
</div>
<div class="secondmain">
<img src="home_images/color1.webp" alt="">
<div class="second1">
<h2>Shop what you love—faster and easier.</h2>
<a href="#">
<p><u>Sign In or Create an Account</u></p>
</a>
</div>
<img src="home_images/color2.webp" alt="">
</div>
<div class="thirdmain">
</div>
<div class="fourthmain">
<img src="home_images/sponser1.png" alt="">
</div>
<div class="fifthmain">
<img src="home_images/fifthmain.png" alt="">
<div>
<h3>Get a $40 Bonus Note!</h3>
<p>An exclusive offer for new Nordstrom credit cardmembers. Restrictions apply.</p>
<br>
<a href="#">
<p><u>Apply Now</u></p>
</a>
</div>
<img id="cardimg" src="home_images/visa-nord.png" alt="">
</div>
<div class="sixthmain">
<img src="home_images/sixthimg.png" alt="">
<div>
<h2>Get It in Time for Christmas</h3>
<p>Order by 8pm ET on December 17 and choose FREE standard shipping.</p>
<a href="#"><span> Shop Gifts </span></a><a href="#"><span> Shop eGift Card </span></a> <a
href="#"><span> Learn More </span></a>
</div>
<img src="home_images/sixthimg.png" alt="">
</div>
<div class="seventhmain">
<img src="home_images/color3.webp" alt="">
<br>
<br>
<br>
<br>
<p><b>GIFTS     BY     PRICE</b></p>
</div>
<div class="eighthmain">
<img src="home_images/Ss1.webp" alt="">
</div>
<div class="ninethmain">
<h3>Designer CLEARANCE</h3>
<h3>UP TO 40% OFF*</h3>
<span style="margin-bottom: 50px;">Save on the best brands and styles <a href="#"><span
style="color: white;"><u>Designer Sale</u></span></a></span>
</div>
<div class="tenthmain">
<img style="width: 100%;" src="home_images/color3.webp" alt="">
<br>
<br>
<br>
<p><b>Trending Now</b></p>
<div id="moving2">
<div id="prev" class="slbutton">
< </div>
<div class="moving2dy">
<div class="moving2img">
<img id="slideimg" src="" alt="">
</div>
<div id="slidetext" style="margin-right: 80px;" class="moving2text"></div>
</div>
<div id="next" class="slbutton">
>
</div>
</div>
</div>
</div>
<div class="eleventh">
<div style="margin-top: 20px;"><img style="width: 100%;" src="home_images/color3.webp" alt=""></div>
<h3 style="margin-top: 20px;">SERVICES & EVENTS</h3>
<div class="eleventhcont">
<div class="contn">
<img src="home_images/1stimg.jpeg" alt="">
<h3>The Gift of Choice</h3>
<p>Get them what they really want with a <br>Nordstrom Gift Card.</p>
<a href="#">Gift Cards & eGift Cards</a>
</div>
<div class="contn">
<img src="home_images/2ndimg.jpeg" alt="">
<h3>Gift Wrapping</h3>
<p>We make it easy with festive options. <br> Shop in store or online to see <br> your choices.</p>
<a href="">Learn More</a>
</div>
<div class="contn">
<img src="home_images/3rdimg.jpeg" alt="">
<h3>Make Memories Together</h3>
<p>Festivities are in full swing with events like Santa Greetings,<br> Holiday Breakfasts, Letters to Santa,<br> virtual livestreams and more.</p>
<a href="#">Explore Events</a>
</div>
<div class="contn">
<img src="home_images/4thimg.jpeg" alt="">
<h3>Free Style Help—in Stores or Online</h3>
<p>Get festive fashion advice from our stylists.</p>
<a href="#">Book an Appointment</a>
</div>
</div>
</div>
<div class="twelvethmain">
<div style="display: flex;justify-content: right;margin-right: 30px; height: 30px;margin-top: 25px;">
<h4 style="width: 140px;">Get Email <br>Updates:</h4>
<input style="width: 260px;" type="text" placeholder="Email Address">
<button style="background-color: black;width: 200px;color: white;" >Sign Up</button>
</div>
</div>
<div style="display: flex;background-color: #f9f9f9;justify-content: space-around; height: 400px;margin-top: 25px;" class="footer">
<div style="display: flex;flex-direction: column;justify-content: space-between;">
<h3>Customer Service</h3>
<p>Contact Us</p>
<p>Order Stutus</p>
<p>Shipping</p>
<p>Return Policy</p>
<p>Price Adjustments</p>
<p>Gifts Cards</p>
<p>FAQ</p>
<p>Product Recalls</p>
</div>
<div style="display: flex;flex-direction: column;justify-content: space-between;">
<h3>About Us</h3>
<p>All Brands</p>
<p>Careers</p>
<p>Corporate Social <br>Responsibility </p>
<p>Diversity,Inclusion &<br>Belongings</p>
<p>Get Email Updates</p>
<p>NordStorm Blog</p>
<p>The Thread</p>
<p>Nordy Podcat</p>
</div>
<div style="display: flex;flex-direction: column;justify-content: space-between;">
<h3>Stores & Service</h3>
<p>Find a Store</p>
<p>Free Style Help</p>
<p>Alterations & <br> Tailoring</p>
<p>Pop-In Shop</p>
<p>Virtual Events</p>
<p>Spa NordStorm</p>
<p>NordStorm Restaurants</p>
<p>NordStorm Local</p>
</div>
<div style="display: flex;flex-direction: column;justify-content:flex-start;">
<h3 style="margin-top: 20px;">NordStorm Card & <br>Rewards</h3>
<p style="margin-top: 20px;">The Nordy Club</p>
<p style="margin-top: 20px;">Pay My Bill</p>
<p style="margin-top: 20px;">Manage My <br>NordStorm card</p>
</div>
<div style="display: flex;flex-direction: column;justify-content: space-between;">
<h3>NordStorm, Inc</h3>
<p>NordStorm Rack</p>
<p>NordStorm Canada</p>
<p>Investor Relations</p>
<p>Press Releases</p>
<p>NordStorm Media <br>Network</p>
</div>
<div style="display: flex;flex-direction: column;justify-content: flex-start; ">
<div style="display: flex; align-items: center;margin-top: 20px;">
<a href="https://www.nordstrom.com/browse/about/nordstrom-apps?origin=footer&cm_sp=corp-_-corp_CustomerService-_-globalfooternav_app"><img width="40px" src="home_images/playstore.png" alt=""></a>
<p>Get our apps</p>
</div>
<div style="display: flex; margin-top: 100px;">
<a href="https://www.instagram.com/nordstrom/?origin=footer&cm_sp=corp-_-corp_socialmedia-_-globalfooternav_instagram"><img style="margin-left: 6px; " width="23px" src="home_images/instagramico.png" alt=""></a>
<a href="https://www.pinterest.com/nordstrom/?origin=footer&cm_sp=corp-_-corp_socialmedia-_-globalfooternav_pinterest"><img style="margin-left: 6px;" width="23px" src="home_images/pinterest.png" alt=""></a>
<a href="http://twitter.com/nordstrom?origin=footer&cm_sp=corp-_-corp_socialmedia-_-globalfooternav_twitter"><img style="margin-left: 6px;" width="23px" src="home_images/twitter.png" alt=""></a>
<a href="https://www.facebook.com/Nordstrom?origin=footer&cm_sp=corp-_-corp_socialmedia-_-globalfooternav_facebook"><img style="margin-left: 6px;" width="23px" src="home_images/facebook.png" alt=""></a>
</div>
</div>
<button id="top" style="color: white;background-color: black;width: 60px;height: 60px;align-self: center;">^ <br> Go to Top</button>
</div>
<div style="height: 100px;"></div>
</div>
</body>
</html>
<script src="index.js"></script>
<script>
let dropper1 = document.querySelector("#dropper1")
let drop1 = document.getElementById("drop1")
let dropper2 = document.querySelector("#dropper2")
let drop2 = document.getElementById("drop2")
let dropper3 = document.querySelector("#dropper3")
let drop3 = document.getElementById("drop3")
let dropper4 = document.querySelector("#dropper4")
let drop4 = document.getElementById("drop4")
let dropper5 = document.querySelector("#dropper5")
let drop5 = document.getElementById("drop5")
let dropper6 = document.querySelector("#dropper6")
let drop6 = document.getElementById("drop6")
let dropper7 = document.querySelector("#dropper7")
let drop7 = document.getElementById("drop7")
let dropper8 = document.querySelector("#dropper8")
let drop8 = document.getElementById("drop8")
dropper1.addEventListener("click", function () {
let style = window.getComputedStyle(drop1).display
if (style == "flex") {
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
} else {
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
drop1.style.display = "flex"
}
})
dropper2.addEventListener("click", function () {
let style = window.getComputedStyle(drop2).display
if (style == "flex") {
drop1.style.display = "none"
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
} else {
drop1.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
drop2.style.display = "flex"
}
})
dropper3.addEventListener("click", function () {
let style = window.getComputedStyle(drop3).display
if (style == "flex") {
drop1.style.display = "none"
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
} else {
drop1.style.display = "none"
drop2.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
drop3.style.display = "flex"
}
})
dropper4.addEventListener("click", function () {
let style = window.getComputedStyle(drop4).display
if (style == "flex") {
drop1.style.display = "none"
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
} else {
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
drop4.style.display = "flex"
}
})
dropper5.addEventListener("click", function () {
let style = window.getComputedStyle(drop5).display
if (style == "flex") {
drop1.style.display = "none"
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
} else {
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
drop5.style.display = "flex"
}
})
dropper6.addEventListener("click", function () {
let style = window.getComputedStyle(drop6).display
if (style == "flex") {
drop1.style.display = "none"
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
} else {
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop7.style.display = "none"
drop8.style.display = "none"
drop6.style.display = "flex"
}
})
dropper7.addEventListener("click", function () {
let style = window.getComputedStyle(drop7).display
if (style == "flex") {
drop1.style.display = "none"
drop1.style.display = "none"
drop2.style.display = "none"
drop3.style.display = "none"
drop4.style.display = "none"
drop5.style.display = "none"
drop6.style.display = "none"
drop8.style.display = "none"
drop7.style.display = "none"