-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
915 lines (807 loc) · 37.4 KB
/
index.html
File metadata and controls
915 lines (807 loc) · 37.4 KB
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
<!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>Shop.com</title>
<link rel="icon" href="https://img.shop.com/Image/resources/images/favicon.ico">
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="shoppie.css" />
<link rel="stylesheet" href="SignInsidebar.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto&display=swap');
*{
font-family: 'poppins', sans-serif;
}
</style>
</head>
<body>
<div id="overlay_right">
<div id="SignMain">
<div>
<div>
<div>
<img
src="https://img.shop.com/Image/resources/images/icon-account-circle-24px.svg"
alt=""
/>
</div>
<h1>Account</h1>
</div>
<i onclick="right_slid_bar_off()" class="fa-regular fa-circle-xmark"></i>
</div>
<div>
<div>
Hello,<span id="UserName"></span>
</div>
<div>
<p>Your Shop Consultant is <strong>SHOP.COM</strong></p>
</div>
<div id="SignInSideBarFirst">
<div>
<img onclick="OpenSignIN()" style="width:70px; margin: -5px 0;" src="https://img.shop.com/Image/resources/images/icon-sign-in-24px.svg" alt="">
<p onclick="OpenSignIN()" id="SignInStatus">Sign In</p>
</div>
<div>
<img src="https://img.shop.com/Image/resources/images/icon-track-orders-24px.svg" alt="">
<p>Track Orders</p>
</div>
<div>
<img src="https://img.shop.com/Image/resources/images/icon-orders-24px.svg" alt="">
<p>Reorder Items</p>
</div>
<div>
<img src="https://img.shop.com/Image/resources/images/icon-cashback-sm-24px.svg" alt="">
<p>Cashback Program</p>
</div>
<div>
<img src="https://img.shop.com/Image/resources/images/icon-help-outline-24px.svg" alt="">
<p>Help</p>
</div>
<div>
<img src="https://img.shop.com/Image/resources/images/icon-create-account-24px.svg" alt="">
<p>Create Account</p>
</div>
<div>
<img src="https://img.shop.com/Image/resources/images/icon-account-circle-24px.svg" alt="">
<p>My Account</p>
</div>
</div>
</div>
<hr>
<div id="SignInSideBarSec">
<div>
<img src="https://img.shop.com/Image/resources/images/icon-list-manager-24px.svg" alt="">
<p>List Manager</p>
</div>
<div>
<img src="https://img.shop.com/Image/resources/images/icon-gift-registry-24px.svg" alt="">
<p>Gift Registry</p>
</div>
<div>
<img src="https://img.shop.com/Image/resources/images/icon-egifts-24px.svg" alt="">
<p>eGifts</p>
</div>
<div>
<img src="https://img.shop.com/Image/resources/images/icon-wellness-24px.svg" alt="">
<p>Wellness Manager</p>
</div>
</div>
<hr>
<div>
<img src="country.png" alt="">
</div>
</div>
</div>
<div id="overlay_left">
<div onclick="offLeft()" id="btndiv_overlay"><Button><i class="fa-regular fa-circle-xmark"></i></Button></div>
<div id="div1overlay">
<img src="https://img.shop.com/Image/resources/logos/shop-s-logo-icon.svg" alt="">
<h2>SHOP.COM</h2>
</div>
<div id="div2overlay">
<h3>Categories</h3>
<p>Cyber week Specials</p>
<p>Gift Center</p>
<p>SHOP.COM Home Warranties</p>
<p>OneCart Exclusive Deals</p>
<p>Clothes</p>
<p onclick="goProduct()">Shoes</p>
<p>Beauty</p>
<p>Shoes</p>
<p>Beauty</p>
<p>Home</p>
<p>Electronics</p>
<p>Health & Nutrition</p>
<p>Jewelry</p>
<p>Kids</p>
<p>Pet Supplies</p>
<p>Food & Drink</p>
<p>Sports</p>
<P>Travel</P>
<P>SHOP Travel</P>
<P>All Stores</P>
<P>Exclusive Brands</P>
</div>
</div>
<div id="navbar">
<div id="navbar_static">
<p>Buy now, pay later! Use Sezzle this Holiday Season! <a href="">Learn More</a> </p>
</div>
<div id="nav">
<div id="navMain" >
<div>
<div><img onclick="goHome()" id="logo" src="https://img.shop.com/Image/resources/logos/shop-logo-us-thanksgiving.svg" alt="shop.com"></div>
<div id="searching_box">
<select class="f4cur" name="navFilter" id="navFilter">
<option value="All-Departments">All Departments</option>
<option value="Auto">Auto</option>
<option value="Baby">Baby</option>
<option value="Beauty">Beauty</option>
<option value="Books">Books</option>
<option value="Business">Business</option>
<option value="Cameras">Cameras</option>
<option value="Clothes">Clothes</option>
</select>
<input type="text" name="" id="Search" placeholder="Search SHOP.COM...">
<button onclick="goToProductPage()" class="f4cur" type="submit"><i class="fa fa-search"></i></button>
</div>
<div><img class="f4cur" id="black_fridayN" src="https://www.shop.com/feo-cdn/_/d/3hhCIyNJE.webp" alt="black Friday sale"></div>
</div>
<div id="lastnav">
<div><img onclick="menuLeft()" class="f4cur" src="https://img.shop.com/Image/resources/images/icon-menu-24px.svg" alt=""></div>
<!-- <div><button><i class="fa-solid fa-bars"></i></button></div> -->
<div id="navLink">
<!-- <p>Black Friday Savings: Use your MASTERCARD® with Click to Pay at checkout to get 20% off your order! <a style="color: black;" href="">Terms Apply</a> </p> -->
<a href="ExclusiveBrands.html">Exclusive Brands</a>
<a href="MainProduct.html">Stores</a>
<a href="">Deals</a>
<a href="">Shop Travel</a>
<a href="">Departments</a>
<a href="">ShopBuddy</a>
<a href="">SHOP Local</a>
</div>
<div>
<img class="f4cur" onclick="right_slid_on()" src="https://img.shop.com/Image/resources/images/icon-account-circle-24px.svg" alt="">
<img class="f4cur" src="https://img.shop.com/Image/resources/images/icon-orders-24px.svg" alt="">
<img class="f4cur" onclick="OpenCartPage()" src="https://img.shop.com/Image/resources/images/icon-shopping-cart-24px.svg" alt="">
</div>
</div>
</div>
<div id="navformid">
<div>
<img src="https://img.shop.com/Image/resources/logos/shop-s-logo-icon.svg" alt="">
</div>
<div>
<button onclick="menuLeft()"><i class="fa-sharp fa-solid fa-bars"></i></button>
</div>
<!-- <div> -->
<div id="searching_box">
<select name="navFilter" id="navFilter">
<option value="All-Departments">All Departments</option>
<option value="Auto">Auto</option>
<option value="Baby">Baby</option>
<option value="Beauty">Beauty</option>
<option value="Books">Books</option>
<option value="Business">Business</option>
<option value="Cameras">Cameras</option>
<option value="Clothes">Clothes</option>
</select>
<input type="text" name="" id="Search" placeholder="Search SHOP.COM...">
<button onclick="goToProductPage()" type="submit"><i class="fa fa-search"></i></button>
</div>
<!-- </div> -->
<div><button><i class="fa-solid fa-user"></i></button></div>
<div>
<button><i class="fa-solid fa-rotate-left"></i></button>
</div>
<div>
<button><i class="fa-solid fa-cart-shopping"></i></button>
</div>
</div>
</div>
</div>
<div id="container_index">
<div id="pehla">
<h3>$50,009,502</h3>
<h5>awarded in</h5>
<img class="co" style="width: 25px;" src="https://img.shop.com/Image/resources/images/cashback-icon.svg" alt="">
<h4>Cashback!</h4>
<button id="pehlabutton">Learn More</button>
</div>
<img id="imgdusra" style="width:100%; height: 300px;"
src="https://img.shop.com/Image/homepage/shop-usa-100957-extra-cashback-1600x300-img1669175552265.jpg" alt="">
<div id="dusra">
<div>
<h4>Get Maine Lobster - Buy 6 Maine Lobster Tails and Get 6 More FREE + Free Shipping</h4>
<img src="https://img.shop.com/Image/290000/293400/293471/products/1951593007.jpg?plain&size=300x300" alt="">
<a href=>"Shop Now!"</a>
</div>
<div>
<h4>Dr. Deedra Mason's Essential 9</h4>
<img style="width: 300px;" src="https://img.shop.com/Image/homepage/us_eng_essential9_sq1616511735959.jpg" alt="">
<a href="">Visit the Essential 9</a>
</div>
<div id="mushkil">
<div><h4>Featured OneCart Stores</h4></div>
<div><img src="https://img.shop.com/Image/topbrands/nmlogos_139741.gif" alt=""></div>
<div><img src="https://img.shop.com/Image/topbrands/nmlogos_135927.gif" alt=""></div>
<div><img src="https://img.shop.com/Image/topbrands/nmlogos_101327.gif" alt=""></div>
<div><img src="https://img.shop.com/Image/topbrands/nmlogos_135882.gif" alt=""></div>
<a href="">See more stories</a>
</div>
<div id="signin">
<h4>Sign in for the best experience</h4>
<button id="dusrabutton">Sign in</button>
<img style="width: 300px;" src="https://img.shop.com/Image/homepage/sa-usa-103713-pain-relief-spray-lg-media1664464729834.jpg" alt="">
</div>
</div>
<div class="tisra">
<h1>Popular Brands</h1>
<div class="tisraa">
<div id="left">
<img id="tisraimg" src="https://img.shop.com/Image/homepage/shop-usa-104259-cyber-monday-banner-600x6001668722164147-img.jpg" alt="">
</div>
<div id="right">
<div id="righta">
<div id="imga"><img src="https://img.shop.com/Image/homepage/nike_140x110-img.gif" alt=""></div>
<div id="imgb"><img src="https://img.shop.com/Image/homepage/michaelkors_140x110-img.gif" alt=""></div>
<div id="imgc"><img src="https://img.shop.com/Image/homepage/coach_brand7.jpg" alt=""></div>
<div id="imgd"><img src="https://img.shop.com/Image/homepage/adidaslogo_140_1100.jpg" alt=""></div>
<div id="imge"><img src="https://img.shop.com/Image/homepage/cuisinart.gif" alt=""></div>
</div>
<div id="rightb">
<div id="imgf"><img src="https://img.shop.com/Image/homepage/us-eng-jcpenny-blackfriday-hp-no221668784681531.jpg" alt="">
<h3>2.00% Cashback</h3>
<p>JC Penney Online only: Extra 40% Off, select styles. Ends 11/29</p>
</div>
<div>
<img id="imgg" src="https://img.shop.com/Image/homepage/NMD_Adults_D2_med_Static1668790417996.jpg" alt="">
<h2>Adidas - Save up 40% of thousands of products.</h3>
</div>
<div>
<img id="imgh" src="https://img.shop.com/Image/homepage/us-eng-macys-cybermonday-hp-media-nov221668632629277.jpeg" alt="">
<h3>Now 3.00% Cashback</h3>
<p>Macys.com, Extra 20% off. Code: Cyber Exclusions Apply.</p>
</div>
</div>
</div>
</div>
</div>
<div id="chautha">
<img id="wo" src="https://img.shop.com/Image/resources/homepage/shop-homepage-icon.svg" alt="">
</div>
<div id="pachwa">
<div>
<img src="https://img.shop.com/Image/homepage/us-qvc-bf-media-mp17382-nov221668805478967.jpeg" alt="">
<h4>Now 7.00% Cashback</h2>
<p>QVC - Unwrap Something Special with Black Friday Sale Prices</p>
</div>
<div>
<img src="https://img.shop.com/Image/homepage/shop-en-us-Marshalls-FreeShip-300x2501668727246227-img.jpg" alt="">
<h4>Marshalls - MAJOR MARKDOWNS means MAJOR DEALS. Shop Now.</h2>
</div>
<div>
<img src="https://img.shop.com/Image/homepage/us-eng-nike-holidaycyber-media-fillin-nov221668635778353.jpeg" alt="">
<h4>2.00% Cashback</h2>
<p>Nike - Save Up to 60% Off Select Styles with Code CYBER</p>
</div>
<div>
<img src="https://img.shop.com/Image/homepage/SHOP_COM_11_18_2022_Homepage_Black_Friday1668637507359.png" alt="">
<h5>Was 4.00% Cashback</h3>
<h4>Now 7.00% Cashback</h2>
<p>HSN - Black Friday deals + code 181630 taking $20 off $100 or more</p>
</div>
</div>
<div id="chatha">
<h2>Cyber Week Specials</h2>
<div id="chathaa">
<div >
<img src="https://img.shop.com/Image/240000/248600/248698/products/925887691.jpg?plain&size=750x750" alt="">
<p>BEAUTY</p>
</div>
<div>
<img src="https://img.shop.com/Image/280000/282000/282022/products/1875095140.jpg?plain&size=750x750" alt="">
<p>JEWELRY</p>
</div>
<div>
<img src="https://img.shop.com/Image/210000/214100/214196/products/701199621.jpg?plain&size=750x750" alt="">
<p>HEALTH & NUTRITION</p>
</div>
<div>
<img src="https://img.shop.com/Image/240000/243300/243390/products/1954251885.jpg?plain&size=1600x1600" alt="">
<p>CLEANING</p>
</div>
<div>
<img src="https://img.shop.com/Image/240000/243300/243380/products/1788447992.jpg?plain&size=750x750" alt="">
<p>BEAUTY GIFT SETS</p>
</div>
<div>
<img src="https://img.shop.com/Image/240000/248600/248698/products/1849034699.jpg?plain&size=750x750" alt="">
<p>SEE ALL</p>
</div>
</div>
</div>
<div id="satwa">
<h1>Hottest Toys</h1>
<div id="satwaa">
<div>
<img src="https://img.shop.com/Image/240000/243400/243406/products/1953965126.jpg?plain&size=600x600" alt="">
<h4>FurReal Cinnamon My Stylin' Pony Interractive Pet Toy</h4>
<!-- <div id="underline"> -->
<p>$89.99</p>
<p>$66.99</p>
<!-- </div> -->
<p>+ $2.01 Cashback</p>
</div>
<div>
<img src="https://img.shop.com/Image/240000/243400/243406/products/1952423175.jpg?plain&size=600x600" alt="">
<h4>Play-Doh Kitchen Creations Ultimate Ice Cream Truck Playset</h4>
<!-- <div id="undrline"> -->
<p>$94.99</p>
<p>$70.99</p>
<!-- </div> -->
<p>+ $2.13 cashback</p>
</div>
<div>
<img src="https://img.shop.com/Image/270000/274900/274929/products/1945412285.jpg?plain&size=600x600" alt="">
<h4>Connect 4 Spin, One Size</h4>
<!-- <div id="underline"> -->
<p>$23.99</p>
<p>$17.99</p>
<!-- </div> -->
<p>+ $0.36 / 2% cashback</p>
</div>
<div>
<img src="https://img.shop.com/Image/270000/274900/274929/products/1949640014.jpg?plain&size=600x600" alt="">
<h4>Barbie Signature - 2022 Holiday Barbie Doll, Black Hair, One Size</h4>
<!-- <div id="underline"> -->
<p>$49.99</p>
<p>$37.49</p>
<!-- </div> -->
<p>+ $0.75 / 2% cashback</p>
</div>
</div>
</div>
<div id="athwa">
<img src="https://img.shop.com/Image/homepage/giftsforher-media1664553609405.jpg" alt="">
<img src="https://img.shop.com/Image/homepage/giftsforhim-media1664553622036.jpg" alt="">
<img src="https://img.shop.com/Image/homepage/giftsforteens-media1664553627912.jpg" alt="">
</div>
<div id="naowa">
<h1>Gift Ideas</h1>
<div id="naowaa">
<div>
<img src="https://img.shop.com/Image/240000/243400/243406/products/1947692115.jpg?plain&size=400x400" alt="">
<p>ELECTRONIC GIFTS</p>
</div>
<div>
<img src="https://img.shop.com/Image/240000/243300/243380/products/1869987733.jpg?plain&size=300x300" alt="">
<p>GIFT UNDER $25</p>
</div>
<div>
<img src="https://img.shop.com/Image/260000/266700/266794/products/1920614672.jpg?plain&size=300x300" alt="">
<p>GIFT UNDER $50</p>
</div>
<div>
<img src="https://img.shop.com/Image/240000/243300/243380/products/1942133519.jpg?plain&size=1600x1600" alt="">
<p>GIFT UNDER $100</p>
</div>
<div>
<img src="https://img.shop.com/Image/240000/248600/248698/products/1766653370.jpg?plain&size=300x300" alt="">
<p>STOCKING STUFFERS</p>
</div>
<div>
<img src="https://img.shop.com/Image/280000/287000/287062/products/1942108864.jpg?plain&size=300x300" alt="">
<p>GIFTS FOR THE FAMILY</p>
</div>
</div>
</div>
<div id="daswa">
<h1>A new take on Turkey: Lobster anyone?</h1>
<div id="daswaa">
<div>
<img src="https://img.shop.com/Image/290000/293400/293471/products/1951593006.jpg?plain&size=600x600" alt="">
<h3>Buy 10 Maine Lobster Tails (3-4 oz), Get 10 FREE</h3>
<div id="undreline">
<p>$289.99</p>
<p>$254.99</p>
<p>+ $7.65/ 3% Cashback</p>
<a href="">Free Shipping</a>
</div>
</div>
<div>
<img src="https://img.shop.com/Image/290000/293400/293471/products/1951593007.jpg?plain&size=600x600" alt="">
<h3>Buy 6 Maine Lobster Tails and Get 6 More FREE (4-5 oz)</h3>
<div id="undreline">
<p>$259.99</p>
<p>$214.99</p>
<p>+ $6.45/ 3% Cashback</p>
<a href="">Free Shipping</a>
</div>
</div>
<div>
<img src="https://img.shop.com/Image/290000/293400/293471/products/1951593008.jpg?plain&size=600x600" alt="">
<h3>Buy 6-Pack Lobster Rolls Get 6-Pack FREE</h3>
<div id="undreline">
<p>$359.99</p>
<p>$239.99</p>
<p>+ $7.20/ 3% Cashback</p>
<a href="">Free Shipping</a>
</div>
</div>
<div>
<img src="https://img.shop.com/Image/290000/293400/293471/products/1951593009.jpg?plain&size=600x600" alt="">
<h3>Buy 4 Fresh Maine Lobsters (1.1 - 1.2 lb), Get 2 Free</h3>
<div id="undreline">
<p>$339.99</p>
<p>$239.99</p>
<p>+ $7.20/ 3% Cashback</p>
<a href="">Free Shipping</a>
</div>
</div>
</div>
</div>
<div id="gyara">
<img src="https://img.shop.com/Image/homepage/ix-us-eng-105233-digestive-health-packets-holiday-banner-med1667506965936.jpg" alt="">
<img src="https://img.shop.com/Image/homepage/us-shp-isotonix-opc-beauty-blend1666710651225.jpg" alt="">
<img src="https://img.shop.com/Image/homepage/us-shp-handn-stocking-stuffers1666710938416.jpg" alt="">
</div>
<div id="bara">
<h2>NEW Layered Holiday Collection</h2>
<div id="barab">
<div>
<img id="collection" src="https://img.shop.com/Image/homepage/layered-usa-104750-holiday-collection-banner-bgsq1668531326212.jpg" alt="">
</div>
<!-- <div id="baraa"> -->
<div>
<img src="https://img.shop.com/Image/280000/282000/282022/products/1954593819.jpg?plain&size=600x600" alt="">
<h3>GABRIELLA _ Simulated Diamond Tennis Necklace</h3>
<h4>$299.95</h4>
<p>+6.00 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img src="https://img.shop.com/Image/280000/282000/282022/products/1954593895.jpg?plain&size=600x600" alt="">
<h3>CANDICE _ Simulated Diamond Tennis Necklace</h3>
<h4>$249.95</h4>
<p>+5.00 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img src="https://img.shop.com/Image/280000/282000/282022/products/1954593896.jpg?plain&size=600x600" alt="">
<h3>EVA - Convertible Link Drop Earrings</h3>
<h4>$49.95</h4>
<p>+1.00 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
</div>
</div>
<div id="tera">
<h2>Luxury Beauty Gifts from Motives</h2>
<div id="terab">
<div>
<img id="motives" src="https://www.shop.com/feo-cdn/p/0/Ya40gCGxs.webp" alt="">
</div>
<div>
<img src="https://www.shop.com/feo-cdn/9/N/6w7SnOjhk.webp" alt="">
<h3>Motives X Amber Essential Collection</h3>
<h4>$80.</h4>
<p>+1.60 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img src="https://www.shop.com/feo-cdn/I/Z/sqKwkwYk4.webp" alt="">
<h3>Motives Gel-ous Brow Gel</h3>
<h4>$22.00</h4>
<p>+0.44 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img src="https://www.shop.com/feo-cdn/X/_/UD9oZMmj8.webp" alt="">
<h3>Motives Lip Kit</h3>
<h4>$27.95</h4>
<p>+0.56 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
</div>
</div>
<div id="chowda">
<h2>Skin Care from Lumière de Vie</h2>
<div id="chowdab">
<div>
<img src="https://img.shop.com/Image/240000/248600/248698/products/1956507686.jpg?plain&size=600x600" alt="">
<h3>Lumière de Vie® Lumi-Stick Gift Set</h3>
<h4>$45.00</h4>
<p>+0.90 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img src="https://img.shop.com/Image/270000/274000/274036/products/1956507645.jpg?plain&size=600x600" alt="">
<h3>Lumière de Vie® Hommes Gift Set</h3>
<h4>$40.00</h4>
<p>+0.80 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img src="https://img.shop.com/Image/240000/248600/248698/products/1849034699.jpg?plain&size=600x600" alt="">
<h3>Lumière de Vie® Lumi-Stick </h3>
<h4>$7.50</h4>
<p>+0.15 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img id="gifting" src="https://img.shop.com/Image/homepage/lumiere-usa-104869-holiday-2022-banner-600x600-img-min1666027440902.jpg" alt="">
</div>
</div>
</div>
<div id="pandra">
<div>
<img src="https://www.shop.com/feo-cdn/7/3/gQtl0rh2w.webp" alt="">
</div>
<div><img src="https://www.shop.com/feo-cdn/f/l/tsh8ETjfs.webp" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/q/3/7qNR_u7Lw.jpg" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/q/m/iYG7eIAwc.jpg" alt=""></div>
</div>
<div id="sola">
<div>
<img src="https://www.shop.com/feo-cdn/y/P/dDFSpUrJw.webp" alt="">
<h3>6.00% Cashback</h3>
<p>15% off with Coupon Code HOLIDAY15 and Free Shipping on orders of $80 or mo</p>
</div>
<div>
<img src="https://www.shop.com/feo-cdn/i/7/kZrsY5It4.jpg" alt="">
<h3>4.00% Cashback</h3>
<p>Coupon Code: HolidaySavings $10 Off $100 Order plus free shipping on order</p>
</div>
<div>
<img src="https://www.shop.com/feo-cdn/d/4/aTzreZkJY.webp" alt="">
<h3>6.00% Cashback</h3>
<p>20% off with coupon HOLIDAY20 and Free Shipping on all orders.</p>
</div>
<div>
<img src="https://img.shop.com/Image/homepage/shop-us-ToyzNow-10off_300x250-img1669679304911.jpg" alt="">
<h3>6.00% Cashback</h3>
<p>10% off Orders + Free Shipping with Code SAVE10</p>
</div>
</div>
<div id="satra">
<h2>Stay Healthy with Essential 9!</h2>
<div id="satrab">
<div>
<img src="https://www.shop.com/feo-cdn/i/t/FvbIz-y9U.webp" alt="">
<h3>Isotonix OPC-3</h3>
<h4>$31.95</h4>
<p>+up to $1.44 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img src="https://www.shop.com/feo-cdn/Q/d/WJY6l0EEw.webp" alt="">
<h3>Heart Health Essential ||| Fish Oil with Vitammin E</h3>
<h4>$36.95</h4>
<p>+up to $1.30 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img src="https://www.shop.com/feo-cdn/5/Y/xeoMgYsVU.webp" alt="">
<h3>Isotonix Multivitamin Without Iron </h3>
<h4>$36.95</h4>
<p>+up to $1.12 / 2% Cashback</p>
<p>Free Shipping with $99 orders</p>
</div>
<div>
<img id="boost" src="https://www.shop.com/feo-cdn/Q/l/CTfnC54RU.webp" alt="">
</div>
</div>
</div>
<div id="athara">
<h1>Cleaning & Health Have Never Been More Important</h1>
<div id="atharaa">
<div>
<img src="https://img.shop.com/Image/210000/214100/214196/products/561800345.jpg?plain&size=600x600" alt="">
<h3>Isotonix Vitamin D with K2</h3>
<h4>$33.50</h4>
<p>+up to $1.60 / 2% Cashback</p>
<p>Free shipping with $99 orders</p>
</div>
<div>
<img src="https://www.shop.com/feo-cdn/Z/K/W8b5TLOH8.webp" alt="">
<h3>DNA Miracles Isotonix Immune</h3>
<h4>$22.50</h4>
<p>+0.45 / 2% Cashback</p>
<p>Free shipping with $99 orders</p>
</div>
<div>
<img src="https://www.shop.com/feo-cdn/A/X/sSexlxuLc.webp" alt="">
<h3>ClearSgield Maximum Protection and Hydration</h3>
<h4>$13.95</h4>
<p>+up to $0.48 / 2% Cashback</p>
<p>Free shipping with $99 orders</p>
</div>
<div>
<img src="https://www.shop.com/feo-cdn/w/_/uHhYHPT1k.webp" alt="">
<h3>Isotonix Vitamin C</h3>
<h4>$15.95</h4>
<p>+up to $0.69 / 2% Cashback</p>
<p>Free shipping with $99 orders</p>
</div>
</div>
</div>
<div id="unish">
<h1>Our Brands</h1>
<div id="unisha">
<div>
<h3>HEALTH & NUTRITION</h3>
<img src="https://www.shop.com/feo-cdn/5/m/AdeGaxB0k.webp" alt="">
</div>
<div>
<h3>BEAUTY</h3>
<img src="https://www.shop.com/feo-cdn/I/w/FMNtlJMyg.webp" alt="">
</div>
<div>
<h3>HOME & CLEANING</h3>
<img src="https://www.shop.com/feo-cdn/C/S/H8ql3Ryh4.webp" alt="">
</div>
<div>
<h3>BABY & KIDS</h3>
<img src="https://www.shop.com/feo-cdn/H/G/L4_BhKWco.webp" alt="">
</div>
<div>
<h3>JEWELRY</h3>
<img src="https://www.shop.com/feo-cdn/4/4/HXrw3sPbY.webp" alt="">
</div>
</div>
</div>
</div>
<div id="footer">
<div style="background-color: rgb(84,88,113);">
<div id="footer-para">
<div> <p>Link To This Page & Tell All Your Friends</p></div>
<div><button>copy Link</button></div>
</div>
<div id="footer_2nd">
<div>
<p>About Us | Help | Accessibility Statement | Contact Us | Partner With Us | Services | Country/Region | Connect | Own Your Own SHOP Site</p>
</div>
<div>
<i class="fa-regular fa-envelope"></i>
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-pinterest-p"></i>
</div>
</div>
</div>
<div style="background-color: rgb(240,241,247);">
<div id="fooder_details">
<p>© 1997-2022 Market America, Inc. or its affiliates. All other designated trademarks, copyrights, and brands are the property of their respective owners.</p>
<p>Only Customers will receive cashback on qualifying purchases. UnFranchise Owners/Shop Consultants will receive increased IBV instead of cashback on qualifying purchases.</p>
<p>Privacy Policy | Terms of Use | Advertising Disclosure | Return Policy | Shipping Information</p>
</div>
<div id="footer_last">
<div>
<div><img src="https://www.shop.com/feo-cdn/7/F/BIyWLz__s.webp" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/B/L/K5pf_0c94.webp" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/m/S/eK8gl_JjY.webp" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/0/q/U9W4qM8Kw.webp" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/5/F/ZEg9H4vt0.png" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/N/z/XfD9Uvd_o.webp" alt=""></div>
<div> <img src="https://www.shop.com/feo-cdn/K/F/E44Pe49Qs.webp" alt=""></div>
<div> <img src="https://www.shop.com/feo-cdn/X/h/rM107miWU.webp" alt=""></div>
</div>
<div>
<img src="https://www.digicert.com/content/dam/digicert/images/navigation/header/DigiCertLogo_MainNavigation.svg" alt="">
</div>
</div>
</div>
</div>
<div id="footer2">
<div id="fot_1">Link To This Page & Tell All Your Friends!<button>copy Link</button> </div>
<div id="fot_2">
<div>
<i class="fa-regular fa-envelope"></i>
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-pinterest-p"></i>
</div>
<div>
<p>About Us | Help | Accessibility Statement | Contact Us | Partner With Us | Services | Country/Region | Connect | Own Your Own SHOP Site</p>
</div>
</div>
<div id="fooder_details2">
<p>© 1997-2022 Market America, Inc. or its affiliates. All other designated trademarks, copyrights, and brands are the property of their respective owners.</p>
<p>Only Customers will receive cashback on qualifying purchases. UnFranchise Owners/Shop Consultants will receive increased IBV instead of cashback on qualifying purchases.</p>
<p>Privacy Policy | Terms of Use | Advertising Disclosure | Return Policy | Shipping Information</p>
</div>
<div id="footer_last">
<div>
<div><img src="https://www.shop.com/feo-cdn/7/F/BIyWLz__s.webp" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/B/L/K5pf_0c94.webp" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/m/S/eK8gl_JjY.webp" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/0/q/U9W4qM8Kw.webp" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/5/F/ZEg9H4vt0.png" alt=""></div>
<div><img src="https://www.shop.com/feo-cdn/N/z/XfD9Uvd_o.webp" alt=""></div>
<div> <img src="https://www.shop.com/feo-cdn/K/F/E44Pe49Qs.webp" alt=""></div>
<div> <img src="https://www.shop.com/feo-cdn/X/h/rM107miWU.webp" alt=""></div>
</div>
<div>
<img src="https://www.digicert.com/content/dam/digicert/images/navigation/header/DigiCertLogo_MainNavigation.svg" alt="">
</div>
</div>
</div>
</body>
</html>
<script>
function goToProductPage(){
var search_pro = document.getElementById('Search').value
if(search_pro=='shoe' ||search_pro=='Shoe' || search_pro=='Shoes' || search_pro=='shoes' ||
search_pro=='boots' || search_pro=='Boots' || search_pro=='bot' ){
window.location.href='MainProduct.html'
}else{
alert("Product Not Found!")
}
}
window.onscroll = function() {mynavFunction()};
var nav = document.getElementById("nav");
var stick = nav.offsetTop;
function mynavFunction() {
// alert('hello')
if (window.pageYOffset >= stick) {
nav.classList.add("sticky")
} else {
nav.classList.remove("sticky");
}
}
// SignInStatus
function OpenSignIN(){
var getInfo =localStorage.getItem('signInUser')
if(getInfo==1){
localStorage.setItem('signInUser', 0)
document.getElementById('SignInStatus').innerText='Sign In'
document.getElementById("UserName").innerText=' User'
window.location.reload()
}else{
window.location.href='SignIn.html'
}
}
function goHome(){
window.location.href='index.html'
}
function OpenCartPage(){
window.location.href='cart.html'
}
function menuLeft(){
document.getElementById("overlay_left").style.display = "block";
document.getElementById('navbar').setAttribute('class', 'backup')
}
function offLeft() {
document.getElementById("overlay_left").style.display = "none";
document.getElementById('navbar').classList.remove('backup')
document.getElementById('container_index').classList.remove('backup')
}
function right_slid_on(){
document.getElementById("overlay_right").style.display = "block";
document.getElementById('navbar').setAttribute('class', 'backup')
var getInfo =localStorage.getItem('signInUser')
if(getInfo==1){
var name =JSON.parse(localStorage.getItem("registeredUser"))[0]['name']
document.getElementById("UserName").innerText=' '+name
document.getElementById('SignInStatus').innerText='Sign Out'
}else{
document.getElementById("UserName").innerText=' User'
}
}
function right_slid_bar_off(){
document.getElementById("overlay_right").style.display = "none";
document.getElementById('navbar').classList.remove('backup')
document.getElementById('container_index').classList.remove('backup')
}
function goProduct(){
window.location.href="MainProduct.html";
}
</script>
<script src="https://kit.fontawesome.com/257095c429.js" crossorigin="anonymous"></script>