forked from hrc1s/OverStock-project_
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
456 lines (446 loc) · 13.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/index.css" />
<title>
Overstock.com | The Best Deals Online: Furniture, Bedding, Rugs, Kitchen
Essentials & More
</title>
<link
rel="icon"
href="https://ak1.ostkcdn.com/images/mxc/20211213-overstock-favicon.svg"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css"
/>
</head>
<body>
<!-- Header -->
<header>
<div id="navbar">
<div>
<a href="index.html">
<img
id="logo"
src="https://logos-download.com/wp-content/uploads/2017/01/Overstock_logo.png"
alt="logo"
/>
</a>
</div>
<nav>
<ul>
<li><a href="#">Furniture</a></li>
<li><a href="#">Outdoor</a></li>
<li><a href="#">Rugs</a></li>
<li><a href="#">Decor</a></li>
<li><a href="#">Bedding</a></li>
<li><a href="#">Home Improvement</a></li>
<li><a href="#">Kitchen</a></li>
<li><a href="#">Lighting</a></li>
<li><a href="#">Kids & Baby</a></li>
<li><a href="#">Bath</a></li>
<li><a href="#">More</a></li>
<li><a href="#">Ideas</a></li>
</ul>
</nav>
<div id="btns">
<button class="dropdown-btn">
<img
id="user-img"
src="https://cdn-icons-png.flaticon.com/128/747/747376.png"
alt=""
/>
<p>Acc</p>
<div class="dropdown-content">
<a href="signup.html">Login</a>
<a href="signup.html">Sign up</a>
</div>
</button>
<button>
<a href="wishlist.html">
<img
src="https://cdn-icons-png.flaticon.com/128/1077/1077035.png"
alt=""
/>
</a>
<p>Fav</p>
</button>
<button>
<a href="cart.html"
><img
src="https://cdn-icons-png.flaticon.com/128/1170/1170678.png"
alt=""
/>
</a>
<p>Cart<span id="cart-count">0</span></p>
</button>
</div>
</div>
</header>
<!-- Header ends here -->
<div class="swiper slideshow">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img
src="https://ak1.ostkcdn.com/img/mxc/07052023-MOPS-LazyLoad.jpg"
alt=""
/>
</div>
<div class="swiper-slide">
<img
src="https://ak1.ostkcdn.com/img/mxc/A2-DSK_07.04-07.10.jpg"
alt=""
/>
<img
src="https://ak1.ostkcdn.com/img/mxc/A2-DSK_07.04-07.10.svg"
alt=""
/>
</div>
<div class="swiper-slide">
<img
src="https://ak1.ostkcdn.com/img/mxc/A3-DSK_07.04-07.10.jpg"
alt=""
/>
<img
src="https://ak1.ostkcdn.com/img/mxc/A3-DSK_07.04-07.10.svg"
alt=""
/>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
<!-- // Limited time deals -->
<h1>Limited-Time Deals</h1>
<div class="lt_deals_container">
<div class="upper_img">
<img
src="https://ak1.ostkcdn.com/img/mxc/06262023-MOPS-Canada_C1.jpg?imwidth=1920"
alt=""
/>
<img
class="lower_img"
src="https://ak1.ostkcdn.com/img/mxc/06012023-MOPS-CA-extra-10control.png?imwidth=1920"
alt=""
/>
<h2>Select Furniture</h2>
</div>
<div class="upper_img">
<img
src="https://ak1.ostkcdn.com/img/mxc/06262023-MOPS-Canada_C2.jpg?imwidth=1920"
alt=""
/>
<img
class="lower_img"
src="https://ak1.ostkcdn.com/img/mxc/06012023-MOPS-CA-extra-15control.png?imwidth=1920"
alt=""
/>
<h2>Select Outdoor</h2>
</div>
<div class="upper_img">
<img
src="https://ak1.ostkcdn.com/img/mxc/06262023-MOPS-Canada_C3.jpg?imwidth=1920"
alt=""
/>
<img
class="lower_img"
src="https://ak1.ostkcdn.com/img/mxc/06012023-MOPS-CA-extra-15control.png?imwidth=1920"
alt=""
/>
<h2>Select Bedding</h2>
</div>
<div class="upper_img">
<img
src="https://ak1.ostkcdn.com/img/mxc/06262023-MOPS-Canada_C4.jpg?imwidth=1920"
alt=""
/>
<img
class="lower_img"
src="https://ak1.ostkcdn.com/img/mxc/06012023-MOPS-CA-extra-15control.png?imwidth=1920"
alt=""
/>
<h2>Select Home Decor</h2>
</div>
<div class="upper_img">
<img
src="https://ak1.ostkcdn.com/img/mxc/06262023-MOPS-Canada_C5.jpg?imwidth=1200"
alt=""
/>
<img
class="lower_img"
src="https://ak1.ostkcdn.com/img/mxc/06012023-MOPS-CA-extra-15control.png?imwidth=1920"
alt=""
/>
<h2>Select Lighting</h2>
</div>
<div class="upper_img">
<img
src="https://ak1.ostkcdn.com/img/mxc/06262023-MOPS-Canada_C6.jpg?imwidth=1920"
alt=""
/>
<img
class="lower_img"
src="https://ak1.ostkcdn.com/img/mxc/06012023-MOPS-CA-extra-15control.png?imwidth=1920"
alt=""
/>
<h2>Select Bath</h2>
</div>
</div>
<!-- Things We Know You'll Love -->
<h1>Things We Know You'll Love</h1>
<div id="recommend-container"></div>
<!-- //Beautiful Finds for Every Room -->
<h1>Beautiful Finds for Every Room</h1>
<div id="category">
<div id="sofas">
<img
src="https://ak1.ostkcdn.com/img/mxc/02132023-MOPS-HP-Redesign-Frame1.jpg?imwidth=1080"
alt=""
/>
<h4>Furniture</h4>
</div>
<div id="bed">
<img
src="https://ak1.ostkcdn.com/img/mxc/02132023-MOPS-HP-Redesign-Frame3.jpg?imwidth=1080"
alt=""
/>
<h4>Bedding</h4>
</div>
<div id="kitchen">
<img
src="https://ak1.ostkcdn.com/img/mxc/02132023-MOPS-HP-Redesign-Frame6.jpg?imwidth=1080"
alt=""
/>
<h4>Kitchen</h4>
</div>
<div id="patio">
<img
src="https://ak1.ostkcdn.com/img/mxc/02132023-MOPS-HP-Redesign-Frame7.jpg?imwidth=1080"
alt=""
/>
<h4>Outdoor</h4>
</div>
</div>
<!-- 2 images -->
<div class="two-images">
<img
src="https://ak1.ostkcdn.com/img/mxc/06012023_1400x550_Promo1_LivingRoom_INTL.jpg?imwidth=1200"
/>
<img
id="sec"
src="https://ak1.ostkcdn.com/img/mxc/06012023_1400x550_Promo1_LivingRoom_INTL.svg?imwidth=1200"
/>
</div>
<h1>Trending This Season</h1>
<!-- Swiper -->
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img
src="https://ak1.ostkcdn.com/img/mxc/06052023_Home_Page_Editorial_1.jpg?imwidth=1920"
/>
<h2>Outdoor Chaise Lounges</h2>
<p>Relax outside and soak up the sun on a chic chaise lounge.</p>
</div>
<div class="swiper-slide">
<img
src="https://ak1.ostkcdn.com/img/mxc/06052023_Home_Page_Editorial_2.jpg?imwidth=1920"
alt=""
/>
<h2>Outdoor Dining Sets</h2>
<p>Take meals outside and make the most of sunnt summer days.</p>
</div>
<div class="swiper-slide">
<img
src="https://ak1.ostkcdn.com/img/mxc/06052023_Home_Page_Editorial_3.jpg?imwidth=1920"
alt=""
/>
<h2>Summer Lawn Games</h2>
<p>Enjoy family fun in the sun with outdoor lawn games.</p>
</div>
<div class="swiper-slide">
<img
src="https://ak1.ostkcdn.com/img/mxc/06052023_Home_Page_Editorial_4.jpg?imwidth=1920"
alt=""
/>
<h2>4th of July</h2>
<p>Get you home ready for independence day.</p>
</div>
<div class="swiper-slide">
<img
src="https://ak1.ostkcdn.com/img/mxc/06052023_Home_Page_Editorial_5.jpg?imwidth=1920"
alt=""
/>
<h2>Home bars</h2>
<p>
Serve up some serious style with mix-ready bars to match any look
</p>
</div>
<div class="swiper-slide">
<img
src="https://ak1.ostkcdn.com/img/mxc/06052023_Home_Page_Editorial_7.jpg?imwidth=1080"
alt=""
/>
<h2>Sleeper Sofas</h2>
<p>
Shop Beautiful sofas that give guests a cozy place to spend the
night.
</p>
</div>
<div class="swiper-slide">
<img
src=https://ak1.ostkcdn.com/img/mxc/06052023_Home_Page_Editorial_8.jpg?imwidth=1920"
alt="" />
<h2>Buffets & Sideboards</h2>
<p>
Update your Dining room with cabinates that help you serve & store
in Style.
</p>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
<!-- Shop Top-Rated Home Essentials -->
<h1>Shop Top-Rated Home Essentials</h1>
<div class="category-buttons">
<button class="category-button" data-category="bed">Bed</button>
<button class="category-button" data-category="sofas">Sofa</button>
<button class="category-button" data-category="kitchen">Kitchen</button>
<button class="category-button" data-category="patio">Patio</button>
</div>
<!-- Box to display products -->
<div class="product-box">
<!-- Products of the first category will be displayed here by default -->
</div>
<!-- Overstock Featured Brands -->
<h1>Overstock Featured Brands</h1>
<div id="feat-brand">
<div>
<img
src="https://ak1.ostkcdn.com/img/mxc/HP_C_Mod_40899374.jpg?imwidth=1920"
alt=""
/>
<h3>Extra 20% Off</h3>
<p>Select Rugs by Artistic Weavers.</p>
</div>
<div>
<img
src="https://ak1.ostkcdn.com/img/mxc/HP_C_Mod_40086411.jpg?imwidth=1920"
alt=""
/>
<h3>Extra 10% Off</h3>
<p>Select Lighting by Oaks Aura</p>
</div>
<div>
<img
src="https://ak1.ostkcdn.com/img/mxc/26986507_C_Mod.jpg?imwidth=1920"
alt=""
/>
<h3>Extra 15% Off</h3>
<p>Select Furniture by Signature Design by Ashley.</p>
</div>
<div>
<img
src="https://ak1.ostkcdn.com/img/mxc/HP_C_Mod_41313320.jpg?imwidth=1920"
alt=""
/>
<h3>Extra 10% Off</h3>
<p>Select Outdoor Furniture by Cambridge Casual</p>
</div>
</div>
<!-- <h1>We've Got Your Style</h1>
<div id="got-your-style">
<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 the style it's signaature
appeal.
</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-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> -->
<section id="newsletter">
<div class="container">
<img
src="https://ak1.ostkcdn.com/img/mxc/7722_EmailCoupon.svg"
alt=""
class="letter"
/>
<div class="text-container">
<h3 class="sign-up-ns">
Sign Up for our weekly <br />newsletter and get rewards
</h3>
</div>
<form action="" id="newsletterForm">
<input type="email" id="email" />
<input type="submit" value="Sign Up" />
</form>
</div>
</section>
<!-- Footer starts here-->
<footer>
<div id="footer-upper">
<div>
<h3>MY ACCOUNT</h3>
<p>Orders & Returns</p>
<p>Email Preferences</p>
<p>Account Settings</p>
</div>
<div>
<h3>LET US HELP</h3>
<p>Contact Customer Care</p>
<p>Shipping Information</p>
<p>Return Policy</p>
<p>International Help</p>
<p>Accessibility</p>
</div>
<div>
<h3>COMPANY INFORMATION</h3>
<p>About Overstock™</p>
<p>Contact Us</p>
<p>Careers</p>
<p>Investor Relations</p>
<p>Sell Your Products</p>
<p>Supply Chain Transparency</p>
</div>
<div>
<h3>MORE WAYS TO SHOP</h3>
<p>Tips & Ideas</p>
<p>Deals</p>
<p>Clearance</p>
<p>New Arrivals</p>
</div>
</div>
<div id="footer-lower">
<div>© Copyright 2023, Overstock.com®</div>
<div>Privacy Policy Terms & Conditions *Promotion Terms</div>
</div>
</footer>
</body>
</html>
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<script src="scripts/index.js"></script>