-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1051 lines (835 loc) · 40.7 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>Overstock.com | The Best Deals Online: Furniture, Bedding, Rugs, Kitchen Essentials & More</title>
<link rel="shortcut icon" type="image" href="https://media.glassdoor.com/sql/14907/overstock-com-squarelogo-1529535998697.png">
<link rel="stylesheet" href="/styles/navbar.css">
<link rel="stylesheet" href="/styles/index.css">
<link rel="stylesheet" href="/styles/footer.css">
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"> </script>
</head>
<body>
<!-- welcome card -->
<div id="welcome-main">
<div id="welcome">
<img src="assets/Screenshot 2022-10-01 183031.png" alt="">
<fieldset>
<legend>Ship to</legend>
<select name="country" id="country">
<option value="india">India</option>
</select>
</fieldset>
<button>Let's go shopping</button>
</div>
</div>
<!-- navbar -->
<div id="navbar">
<div id="accordian">
<!-- nav toggle -->
<div>
<div>
<div></div>
<p>Sign up to receive our latest <span style="font-weight: bold;">deals</span> and get a <span
style="font-weight: bold;">10% off coupon</span>.<i id="toggle"
class="fa-solid fa-chevron-down"></i></p>
<i id="close" class="fa-solid fa-xmark"></i>
</div>
<div>
<input type="email" placeholder="enter email address">
<p>Sign up</p>
</div>
<p>Terms & Conditions | Privacy Policy | *You can unsubscribe at any time</p>
</div>
<!-- location -->
<div>
<p>Ships to: </p>
<img src="https://ak1.ostkcdn.com/img/mxc/intFlag_IN.gif" alt="">
<h5>INDIA</h5>
</div>
<!-- logo -->
<div>
<img id="homepage" src="https://ak1.ostkcdn.com/img/mxc/OSTK_MAIN_LOGO_20181127KCH.jpg" alt="">
<div>
<input type="text" placeholder="Search...everything you finds ships for free">
<i class="fa-solid fa-magnifying-glass"></i>
</div>
<div>
<div id="myAccount">
<img id="account" src="https://cdn-icons-png.flaticon.com/512/747/747376.png" alt="">
<p id="username">Account</p>
<div>
<p>Singin</p>
<p>Signout</p>
</div>
</div>
<div>
<img src="https://cdn-icons-png.flaticon.com/512/1077/1077035.png" alt="">
<p>Lists</p>
</div>
<div id="cartNum">
<img id="cartImage" src="https://cdn-icons-png.flaticon.com/512/2838/2838895.png" alt="">
<div></div>
<p>Cart</p>
</div>
</div>
<button id="topcheckout"><i class="fa-solid fa-lock"></i> Check Out</button>
<i id="menu" class="fa-solid fa-bars"></i>
</div>
<!-- tab -->
<div id="tabs">
<div>
<p class="tab">Furniture</p>
<div class="dropDown">
<div id="furniture">
<div>
<h5>Living Room Furniture</h5>
<p>Sofas & Couches</p>
<p>Sectionals</p>
<p>Benches</p>
<p>Ottomans & Poufs</p>
<p>Accent Chairs</p>
<p>Recliners</p>
<p>Coffee & Accent Tables</p>
<p>TV Stands</p>
</div>
<div>
<h5>Bedroom Furniture</h5>
<p>Beds</p>
<p>Bedroom Sets</p>
<p>Headboards</p>
<p>Bed Frames</p>
<p>Dressers & Chests</p>
<p>Nightstands</p>
<p>Armoires & Wardrobes</p>
<p>Mattresses</p>
<p>Kids Beds</p>
</div>
<div>
<h5>Dining, Kitchen & Bar</h5>
<p>Kitchen & Dining Sets</p>
<p>Kitchen & Dining Chairs</p>
<p>Kitchen & Dining Tables</p>
<p>Counter & Bar Stools</p>
<p>Bar Tables</p>
<p>Buffets & Sideboards</p>
<p>Home Bars</p>
<p>Kitchen Islands & Carts</p>
<p>Kitchen Furniture</p>
</div>
<div>
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/eb6657e6f8fb0814ee891f8ce33e6da2268e6f32/Signature-Design-by-Ashley-Limited-Edition-13-inch-Hybrid-Mattress.jpg?imwidth=320"
alt="">
<h3>extra 20% off</h3>
<p>Select Furniture by Signature Design by Ashley*</p>
</div>
<div>
<h5>Patio & Outdoor Furniture</h5>
<p>Patio Furniture Sets</p>
<p>Sofas, Chairs & Sectionals</p>
<p>Dining Sets</p>
<p>Coffee & Side Tables</p>
<p>Chaise Lounges</p>
<p>Adirondack Chairs</p>
<p>Hammocks & Swings</p>
<p>Outdoor Benches</p>
</div>
<div>
<h5>Office Furniture</h5>
<p>Desks</p>
<p>Office Chairs</p>
<p>Small Space Desks</p>
<p>Office Shelves & Storage</p>
<p>File Cabinets</p>
<p>Office & Conference Tables</p>
<p>Bookshelves</p>
<p>Gaming Chairs</p>
</div>
<div>
<h5>More</h5>
<p>Entryway</p>
<p>Bathroom</p>
<p>Home Gym</p>
<p>Recreation Room</p>
<p>Small Space Living</p>
<p>Kids and Toddler Furniture</p>
<p>Baby Furniture</p>
</div>
<div>
<h5>More Ways to Shop</h5>
<p>Featured Sales</p>
<p>New Arrivals</p>
<p>Clearance</p>
<p>Furniture Advice</p>
</div>
</div>
</div>
</div>
<div>
<p class="tab">Rugs</p>
<div class="dropDown">
<div id="rugs">
<div>
<h5>Area Rugs By Size</h5>
<p>3x5</p>
<p>4x6</p>
<p>5x8</p>
<p>6x9</p>
<p>7 x 9</p>
<p>8x10</p>
<p>9x12</p>
<p>10x14</p>
<p>Runner</p>
</div>
<div>
<h5>Area Rugs By Color</h5>
<p>Grey</p>
<p>Blue</p>
<p>Ivory</p>
<p>White</p>
<p>Black</p>
<p>Red</p>
<p>Brown</p>
<p>Orange</p>
<p>Pink</p>
</div>
<div>
<h5>Rugs By Type</h5>
<p>Area Rugs</p>
<p>Outdoor Rugs</p>
<p>Rug Pads</p>
<p>One of a Kind Rugs</p>
<p>Kids & Tweens Rugs</p>
<p>Door Mats</p>
<p>Stair Treads</p>
<p>Kitchen Mats & Rugs</p>
<p>Bath Mats & Rugs</p>
</div>
<div>
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/cf512e903f15d3b0e8fea7c150af2c0b0d3eaa8e/SAFAVIEH-Madison-Snowflake-Medallion-Rustic-Farmhouse-Distressed-Rug.jpg?imwidth=320"
alt="">
<h3>extra 20% off</h3>
<p>Select Area Rugs by Safavieh*</p>
</div>
<div>
<h5>Trending Rugs</h5>
<p>Washable Rugs</p>
<p>Round Rugs</p>
<p>Shag Rugs</p>
<p>Wool Rugs</p>
<p>Jute Rugs</p>
<p>Cowhide Rugs</p>
<p>Braided Rugs</p>
<p>Handmade Rugs</p>
<p>Vintage Rugs</p>
</div>
<div>
<h5>Area Rugs By Style</h5>
<p>Modern & Contemporary</p>
<p>Bohemian & Eclectic</p>
<p>Persian</p>
<p>Transitional</p>
<p>Geometric</p>
<p>Abstract</p>
<p>Solid</p>
<p>Floral & Botanical</p>
</div>
<div>
</div>
<div>
<h5>More Ways to Shop</h5>
<p>Featured Sales</p>
<p>New Arrivals</p>
<p>Clearance</p>
<p>Rugs Advice</p>
</div>
</div>
</div>
</div>
<div>
<p class="tab">Decor</p>
<div class="dropDown">
<div id="decor">
<div>
<h5>Mirrors</h5>
<p>Wall Mirrors</p>
<p>Bathroom Vanity Mirrors</p>
<p>Floor Mirrors</p>
<p>Full Length Mirrors</p>
<p>Rectangular Mirrors</p>
<p>Round Mirrors</p>
<p>Window Mirrors</p>
<p>Mirror Sets</p><br>
<h5>Art Gallery</h5>
<p>Gallery Wrapped Canvas</p>
<p>Canvas Art</p>
<p>Framed Prints</p>
<p>Unframed Prints</p>
<p>Metal Art</p>
<p>Wood Wall Art</p>
<p>Matching Sets</p>
</div>
<div>
<h5>Decorative Accessories</h5>
<p>Indoor Fireplaces</p>
<p>Outdoor Decor</p>
<p>Accent Pieces</p>
<p>Silk Plants</p>
<p>Candles & Holders</p>
<p>Vases</p>
<p>Room Dividers</p>
<p>Photo Frames & Albums</p>
<p>Planters, Hangers & Stands</p><br>
<h5>Window Treatments</h5>
<p>Curtains & Drapes</p>
<p>Blinds & Shades</p>
<p>Curtain Rods & Hardware</p>
<p>Sheer Curtains</p>
<p>Blackout Curtains</p>
<p>Kitchen Curtains</p>
<p>Valances</p>
<p>Stained Glass Panels</p>
</div>
<div>
<h5>Wall Decor</h5>
<p>Wall Sculptures</p>
<p>Decorative Shelves</p>
<p>Wall Tapestries</p>
<p>Clocks</p>
<p>Wall Decals</p>
<p>Acrylic Wall Art</p><br>
<h5>Throw pillows</h5>
<p>Accent Pillows</p>
<p>Outdoor Pillows</p>
<p>Floor Pillows</p>
<p>Poufs</p>
<p>Pillow Covers</p>
<p>Bed Rest</p>
</div>
<div>
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/e1091fd2788bdba18f11d5d08319b1bf2da83288/nuLOOM-Handmade-Moroccan-Leather-Filled-Ottoman-Pouf.jpg"
alt="">
<h3>extra 15% off</h3>
<p>Select Home Decor*</p><br>
<h5>More Ways to Shop</h5>
<p>Featured Sales</p>
<p>New Arrivals</p>
<p>Clearance</p>
<p>Decor Advice</p>
</div>
</div>
</div>
</div>
<div>
<p class="tab">Bedding</p>
<div class="dropDown">
<div id="bedding">
<div>
<h5>Bedding Sets</h5>
<p>Comforters and Sets</p>
<p>Bed Sheet Sets</p>
<p>Quilts and Bedspreads</p>
<p>Duvet Cover and Sets</p>
<p>Bed-in-a-Bag</p>
<p>Daybed Cover Sets</p><br>
<h5>Bedding Essentials</h5>
<p>Down Comforters and Duvet Inserts</p>
<p>Bed Pillows</p>
<p>Pillow Shams</p>
<p>Bed Skirts</p>
<p>Kids Bedding</p>
<p>Baby Bedding</p>
<p>Bed Canopies</p>
</div>
<div>
<h5>Bed Sheets and Pillowcases</h5>
<p>Bed Sheet Sets</p>
<p>Pillow Shams</p>
<p>Pillowcases</p>
<p>Fitted Bed Sheets</p>
<p>Pillow Protectors</p>
<p>Flat Bed Sheets</p><br>
<h5>Mattress Pads and Toppers</h5>
<p>Mattress Toppers</p>
<p>Mattress Protectors</p>
<p>Mattress Pads</p>
</div>
<div>
<h5>Mattresses</h5>
<p>Twin Mattress</p>
<p>Twin XL Mattress</p>
<p>Full Mattress</p>
<p>Queen Mattress</p>
<p>King Mattress</p>
<p>California King Mattress</p>
<p>Air Mattress</p>
<p>Mattress in a Box</p><br>
<h5>Blankets</h5>
<p>Blankets and Throws</p>
<p>Heated Blankets</p>
<p>Weighted Blankets</p>
</div>
<div>
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/43c02f6392cd73d692826b497a5a8a8f9cc8654a/Signature-Design-by-Ashley-Chime-12-inch-Memory-Foam-Mattress.jpg?imwidth=320"
alt="">
<h3>extra 20% off</h3>
<p>Select Mattresses & More by Signature Design by Ashley*</p><br>
<h5>More Ways to Shop</h5>
<p>Featured Sales</p>
<p>New Arrivals</p>
<p>Clearance</p>
<p>Bedding Advice</p>
</div>
</div>
</div>
</div>
<div>
<p class="tab">Home Improvement</p>
<div class="dropDown">
<div id="homeI">
<div>
<h5>Kitchen</h5>
<p>Ranges & Ovens</p>
<p>Refrigerators</p>
<p>Kitchen Carts & Islands</p>
<p>Kitchen Sinks</p>
<p>Kitchen Faucets</p>
<p>Kitchen Cabinets</p>
<p>Backsplash</p><br>
<h5>Flooring & Wall</h5>
<p>Tile</p>
<p>Laminate Flooring</p>
<p>Vinyl Flooring</p>
<p>Hardwood Flooring</p>
<p>Wallpaper</p>
<p>Wall Tiles</p>
<p>Ceiling Tiles</p>
</div>
<div>
<h5>Bathroom</h5>
<p>Bathroom Vanities</p>
<p>Bathroom Vanity Mirrors</p>
<p>Bathroom Sinks</p>
<p>Bathroom Faucets</p>
<p>Bathroom Cabinets</p>
<p>Tubs</p>
<p>Showers</p>
<p>Toilets</p><br>
<h5>Home Essentials</h5>
<p>Vacuums & Floorcare</p>
<p>Heating & Cooling</p>
<p>Air Quality</p>
<p>Sewing Machines</p>
<p>Craft Machines</p>
</div>
<div>
<h5>Storage & Organization</h5>
<p>Outdoor Storage</p>
<p>Laundry Room</p>
<p>Garage Storage</p>
<p>Decorative Storage</p>
<p>Closet Organizers</p>
<p>Kitchen & Pantry</p>
<p>Cabinets</p>
<p>Furniture Storage</p>
<p>Safes</p>
</div>
<div>
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/8ae6687667c075d1d993a7673053bbbf74e0ba26/Louise-48in-Bath-Vanity.jpg"
alt="">
<h3>extra 10% off</h3>
<p>Select Home Improvement*</p><br>
<h5>More Ways to Shop</h5>
<p>Featured Sales</p>
<p>New Arrivals</p>
<p>Clearance</p>
<p>Home Improvement Advice</p>
</div>
</div>
</div>
</div>
<div>
<p class="tab">Kitchen</p>
<div class="dropDown">
<div id="kitchen">
<div>
<h5>Dinnerware</h5>
<p>Dinnerware Sets</p>
<p>Formal Dinnerware</p>
<p>Plates</p>
<p>Bowls</p>
<p>Cups & Saucers</p>
<p>Mugs</p>
<p>Flatware</p>
<p>Tumblers</p>
<p>Glasses & Barware</p><br>
<h5>Cookware & Bakeware</h5>
<p>Cookware Sets</p>
<p>Pots & Pans</p>
<p>Specialty Cookware</p>
<p>Grill Pans & Griddles</p>
<p>Cooking Essentials</p>
<p>Cutlery</p>
<p>Bakeware</p>
</div>
<div>
<h5>Kitchen Furniture</h5>
<p>Counter & Bar Stools</p>
<p>Kitchen & Dining Sets</p>
<p>Kitchen & Dining Chairs</p>
<p>Kitchen & Dining Tables</p>
<p>Buffets & Sideboards</p>
<p>Home Bars</p>
<p>Kitchen Carts</p>
<p>Bar Tables</p>
<p>Kitchen Cabinets</p><br>
<h5>Kitchen Appliances</h5>
<p>Mixers</p>
<p>Blenders</p>
<p>Coffee Makers</p>
<p>Air Fryers</p>
<p>Pressure Cookers</p>
<p>Food Processors</p>
<p>Major Appliances</p>
</div>
<div>
<h5>Serveware</h5>
<p>Serving Platters & Trays</p>
<p>Serving Bowls</p>
<p>Warming Buffet & Trays</p>
<p>Drink Pitchers</p>
<p>Salt & Pepper Shakers</p>
<p>Chip & Dip Sets</p>
<p>Table Linens</p><br>
<h5>Kitchen Storage</h5>
<p>Wine Racks</p>
<p>Kitchen Trash Cans</p>
<p>Pot Racks</p>
<p>Pantry Storage</p>
<p>Kitchen Canisters</p>
<p>Plastic Storage Containers</p>
</div>
<div>
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/39bf512a95c18b5fb2798135e8f8f46550a62455/Simple-Living-Manhattan-Bar-Cart.jpg"
alt="">
<h3>extra 15% off</h3>
<p>Select Kitchen & Dining*</p><br>
<h5>More Ways to Shop</h5>
<p>Featured Sales</p>
<p>New Arrivals</p>
<p>Clearance</p>
<p>Kitchen Advice</p>
</div>
</div>
</div>
</div>
<div>
<p class="tab">Outdoor</p>
<div class="dropDown">
<div id="outdoor">
<div>
<h5>Patio Furniture</h5>
<p>Patio Furniture Sets</p>
<p>Sofas, Chairs & Sectionals</p>
<p>Dining Sets</p>
<p>Dining Tables</p>
<p>Dining Chairs</p>
<p>Coffee & Side Tables</p>
<p>Chaise Lounges</p>
<p>Adirondack Chairs</p>
<p>Hammocks & Swings</p><br>
<h5>Gardening & Yard Care</h5>
<p>Sheds & Outdoor Storage</p>
<p>Greenhouses</p>
<p>Gardening & Yard Tools</p>
<p>Mowers & Trimmers</p>
<p>Hoses & Sprinklers</p>
<p>Fencing & Privacy Screens</p>
</div>
<div>
<h5>Outdoor Decor</h5>
<p>Fire Pits</p>
<p>Outdoor Rugs</p>
<p>Doormats</p>
<p>Outdoor Lighting</p>
<p>Garden Accents</p>
<p>Outdoor Curtains & Shades</p>
<p>Outdoor Cushions & Pillows</p>
<p>Planters, Hangers & Stands</p>
<p>Patio Furniture Covers</p><br>
<h5>Grills & Outdoor Cooking</h5>
<p>Gas Grills</p>
<p>Charcoal Grills</p>
<p>Smokers</p>
<p>Grilling Accessories</p>
<p>Grilling Tools & Cookware</p>
</div>
<div>
<h5>Umbrellas & Shades</h5>
<p>Patio Umbrellas</p>
<p>Sunsails</p>
<p>Gazebos & Pergolas</p>
<p>Umbrella Bases</p>
<p>Beach Umbrellas</p><br>
<p>Tents & Outdoor Canopies</p>
<h5>Sports & Outdoors</h5>
<p>Cycling</p>
<p>Hot Tubs & Spas</p>
<p>Inflatable Bounce Houses</p>
<p>Kids Outdoor Furniture</p>
<p>Lawn Games</p>
<p>Outdoor Play</p>
<p>Outdoor Playhouses & Play Tents</p>
<p>Skating & Scooters</p>
<p>Swimming Pools</p>
<p>Swing Sets</p>
<p>Trampolines</p>
</div>
<div>
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/fe95310c3d23a0dac7662d2cf1cd8b5f7280e787/Brava-Outdoor-4-Piece-Wood-Sectional-Set-w--Cushions-by-Christopher-Knight-Home.jpg"
alt="">
<h3>extra 15% off</h3>
<p>Select Garden & Patio*</p><br>
<h5>More Ways to Shop</h5>
<p>Featured Sales</p>
<p>New Arrivals</p>
<p>Clearance</p>
<p>Patio Advice</p>
</div>
</div>
</div>
</div>
<div>
<p>Kids & Baby</p>
<!-- <div class="dropDown">
</div> -->
</div>
<div>
<p>More</p>
<!-- <div class="dropDown">
</div> -->
</div>
<div>
<p>|</p>
</div>
<div>
<p>Ideas</p>
<!-- <div class="dropDown">
</div> -->
</div>
<div>
<p>Sales & Deals</p>
<!-- <div class="dropDown">
</div> -->
</div>
</div>
</div>
</div>
<div id="container">
<img id="hpImage" src="/assets/Screenshot 2022-09-28 084940.png" alt="">
<h1>Limited-Time Deals</h1>
<div id="dealCard">
<div><img src="https://ak1.ostkcdn.com/img/mxc/09192022_HB_DOMESTIC_1.svg?imwidth=1920" alt="">
<p>select rugs</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/09192022_HB_DOMESTIC_2.svg?imwidth=1920" alt="">
<p>select living room furniture</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/09192022_HB_DOMESTIC_3.svg?imwidth=1920" alt="">
<p>select bedroom furniture</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/09262022_HB_DOMESTIC_4.svg?imwidth=1920" alt="">
<p>select lighting and cieling fan</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/09192022_HB_DOMESTIC_5.svg?imwidth=1920" alt="">
<p>select bedding</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/09262022_HB_DOMESTIC_6.svg?imwidth=1920" alt="">
<p>select halloween decor</p>
</div>
</div>
<img id="hpImage" src="assets/Screenshot 2022-09-28 103848.png" alt="">
<h1>Fresh Finds In Each Category</h1>
<div id="categoryCard">
<div><img src="https://ak1.ostkcdn.com/img/mxc/11192021-CatSilo-Furniture.png?imwidth=1920" alt="">Furniture
<p></p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/11152021-CatSilo-AreaRugs.png?imwidth=1920" alt="">
<p>Area Rugs</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/11152021-CatSilo-BedBath.png?imwidth=1920" alt="">
<p>Bedding</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/11152021-CatSilo-Decor.png?imwidth=1920" alt="">
<p>Home Decor</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/CatSilo-Window-040721.jpg?imwidth=1920" alt="">
<p>Window Treatments</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/11152021-CatSilo-Kitchen.png?imwidth=1920" alt="">
<p>Kitchen</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/11192021-CatSilo-Outdoor.png?imwidth=1920" alt="">
<p>Outdoor</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/01112021-CatSilo-HomeImp.jpg?imwidth=1920" alt="">
<p>Home Improvement</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/11152021-CatSilo-Storage.png?imwidth=1920" alt="">
<p>Storage</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/01112021-CatSilo-Mattresses.jpg?imwidth=1920" alt="">
<p></p>Mattresses
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/11152021-CatSilo-Lighting.png?imwidth=1920" alt="">
<p>Lighting</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/CatSilo-AllDeals-040721.jpg?imwidth=1920" alt="">
<p>Shop All Deals</p>
</div>
</div>
<h1>Fall Home Updates for Every Budget</h1>
<div id="budgetCard">
<button id="leftSlide" class="slide"><i class="fa-solid fa-angle-left"></i></button>
<button id="rightSlide" class="slide"><i class="fa-solid fa-angle-right"></i></button>
<div><img src="https://ak1.ostkcdn.com/img/mxc/08082022-Frame1-GrillsOutdoor.jpg?imwidth=1920" alt="">
<h2>Grills & Outdoor Cooking</h2>
<p>Save on the best of the best for your backyard barbecue.</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/08082022-Frame2-OutdoorDining.jpg?imwidth=1920" alt="">
<h2>Outdoor Seating Sets</h2>
<p>Soaking up the sun in style has never been more affordable.</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/08082022-Frame3-BohoMachineWashable.jpg?imwidth=1920" alt="">
<h2>Machine Washable Rugs</h2>
<p>Great deals on rugs that are as easy to clean as they are to love.</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/08082022-Frame4-Rustic.jpg?imwidth=1920" alt="">
<h2>Rustic Nightstands</h2>
<p>Save on bedside tables that add log-cabin chic to any bedroom.</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/08082022-Frame5-HammocksSwings.jpg?imwidth=1920" alt="">
<h2>Hammocks & Swings</h2>
<p>Kick back and sway your way to relaxation at the perfect price.</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/08082022-Frame6-OutdoorBenches.jpg?imwidth=1920" alt="">
<h2>Outdoor Benches</h2>
<p>With free shipping, saving on backyard benches is a walk in the park.</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/08082022-Frame7-FloralChairs.jpg?imwidth=1920" alt="">
<h2>Floral Chairs</h2>
<p>Bring the outdoors in with fresh deals on beautiful floral seating.</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/08082022-Frame8-WoodPlatformBeds.jpg?imwidth=1920" alt="">
<h2>Wood Platform Beds</h2>
<p>Treat your bedroom to high style with a low profile.</p>
</div>
</div>
<img id="hpImage" src="assets/Screenshot 2022-09-28 125154.png" alt="">
<h1>Overstock Featured Brands</h1>
<div id="brands">
<div><img src="https://ak1.ostkcdn.com/img/mxc/26986507_C_Mod.jpg?imwidth=1920" alt="">
<h4>Extra 20% off</h4>
<p>Select Furniture by<br>Signature Design by Ashley*</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/HP_C_Mod_33517468_2.jpg?imwidth=1920" alt="">
<h4>Save On</h4>
<p>Select Mattresses by<br>Tempur-Pedic</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/HP_C_Mod_39470048.jpg?imwidth=1920" alt="">
<h4>Extra 20% off</h4>
<p>Select Rugs by<br>Artistic Weavers*</p>
</div>
<div><img src="https://ak1.ostkcdn.com/img/mxc/HP_C_Mod_35950863.jpg?imwidth=1920" alt="">
<h4>Extra 20% off</h4>
<p>Select Rugs by<br>Balta</p>
</div>
</div>
<img style="margin-bottom: 60px;" id="hpImage" src="assets/Screenshot 2022-09-28 153939.png" alt="">
<h1>We've Got Your Style</h1>
<div id="yourStyle">
<div>
<img src="https://ak1.ostkcdn.com/img/mxc/030822-SBS-MidCenMod.jpg?imwidth=1920" alt="">
<h2>Mid-Century Modern</h2>
<p>Retro meets modern chic in these clean lines and vibrant tones.</p>
</div>
<div>
<img src="https://ak1.ostkcdn.com/img/mxc/030822-SBS-Farmhouse.jpg?imwidth=1920" alt="">
<h2>Farmhouse</h2>
<p>Country comforts abound in this fresh take on rustic home decor.</p>
</div>
<div>
<img src="https://ak1.ostkcdn.com/img/mxc/030822-SBS-Traditional.jpg?imwidth=1920" alt="">
<h2>Traditional</h2>
<p>Cozy designs, clean and classic, give this style it’s signature appeal.</p>
</div>
</div>
<button id="seeAll">See All Styles</button>
<h1>Trending Searches</h1>
<div id="trending">
<h3>Mugs</h3>
<h3>Blankets</h3>
<h3>Cookie Cutters</h3>
<h3>Air Fryers</h3>
<h3>Kitchen Mixers</h3>
<h3>Lamps</h3>
<h3>Towels</h3>
<h3>Tree Skirts</h3>
<h3>Garland</h3>
<h3>Fall Wreaths</h3>
<h3>Christmas Trees</h3>
<h3>Fireplaces</h3>
</div>
</div>
<div id="bar"></div>
<div id="footer">
<div>
<div>
<h5>MY ACCOUNT</h5>
<p>Orders & Returns</p>
<p>Email Preferences</p>
<p>Account Settings</p>
</div>
<div>
<h5>LET US HELP</h5>
<p>Contact Customer Care</p>
<p>Shipping Information</p>