-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
720 lines (700 loc) · 22.9 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
<!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" />
<script
src="https://kit.fontawesome.com/4bdadd42e8.js"
crossorigin="anonymous"
></script>
<title>Bluefly</title>
<link rel="icon" type="image/x-icon" href="./images/bftabicon.png" />
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="shopbycat.css" />
<link rel="stylesheet" href="newarrivals.css" />
<link rel="stylesheet" href="header.css" />
<script src="index.js"></script>
<!-- googlefonts -->
<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=Nanum+Gothic&family=Noto+Serif+Display&display=swap"
rel="stylesheet"
/>
<!-- bootsrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<!-- Latest compiled and minified CSS -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
/>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<!-- header -->
<div id="header">
<div id="upheader">
<div id="buttonnav">
<button>
<div class="linebutton"></div>
<div class="linebutton"></div>
<div class="linebutton"></div>
</button>
</div>
<div id="divheaderlogo">
<a href="index.html">
<img id="headerlogo" src="./images/BLUEFLY-LOGO.png" alt="logo" />
</a>
</div>
<div id="headericonsdiv">
<span>
<img src="./images/icons8-search-50.png" alt="search" />
<p>SEARCH</p>
</span>
<a href="SignUp.html">
<img src="./images/icons8-customer-50.png" alt="profile" />
</a>
<a href="">
<img src="./images/icons8-favorite-50.png" alt="favourite" />
</a>
<a href="Cart.html">
<img src="./images/icons8-shopping-bag-50.png" alt="cart" />
</a>
</div>
</div>
<div id="navbar">
<ul>
<li>
<a href="" class="dropbar"
>CLOTHING
<div class="dropbar_content">
<div>
<img
src="https://cdn.shopify.com/s/files/1/0248/3473/6191/files/women.jpg?v=1613619704"
alt=""
/>
<h2>DRESSES</h2>
<p>UP TO 80% OFF</p>
</div>
<div>
<h2>WOMEN'S CLOTHING</h2>
<p>Shop All</p>
<p>Sweater</p>
<p>T-shirt</p>
<p>Sheath dress</p>
<p>Gym clothes</p>
<p>Tank top</p>
<p>Shorts</p>
<p>Hoodie</p>
<p>Swimsuit</p>
<p>Long-sleeve top</p>
<p>Skirt</p>
<p>Jumsuits</p>
<p>Coats & Jacket</p>
<p>Loungewear & Sleepwear</p>
</div>
<div>
<h2>MEN'S CLOTHING</h2>
<p>Sweater</p>
<p>Shirt</p>
<p>Jeans</p>
<p>Suit</p>
<p>Hawaiian shirt</p>
<p>Shorts</p>
<p>Cardigan</p>
<p>Sport shoes</p>
<p>Jacket</p>
<p>Bow tie</p>
<p>Sleeveless shirt</p>
<p>Long-sleeve top</p>
<p>Vest</p>
<p>Polo shirt</p>
<p>Underpants</p>
</div>
</div>
</a>
</li>
<li>
<a href="productPage.html" class="dropbar">
SHOES
<div class="dropbar_content">
<div>
<img
src="https://cdn.shopify.com/s/files/1/0248/3473/6191/files/women_shoes.jpg?v=1598516516"
alt=""
/>
<p>Sandals</p>
<p>UP TO 70% off</p>
</div>
<div>
<h2>WOMEN'S SHOES</h2>
<p>Shop ALL</p>
<p>Boots</p>
<p>Espadrilles</p>
<p>Flats</p>
<p>Mules & slides</p>
<p>Oxfords & Loafers</p>
<p>Pumps & Heels</p>
<p>Slippers</p>
<p>Sneakers</p>
<p>Wedges</p>
</div>
<div>
<h2>WOMEN'S DESINERS</h2>
<p>Burberry</p>
<p>Chloe</p>
<p>Christian louboutin</p>
<p>Dolce & Gabana</p>
<p>Giuseppe Zanotti</p>
<p>Gucci</p>
<p>Jimmy Choo</p>
<p>Manolo Blahnik</p>
<p>Parada</p>
<p>Saint Laurent</p>
</div>
<div>
<h2>MEN'S SHOES</h2>
<p>Shop ALL</p>
<p>Drivers, Loafers & Slip-ons</p>
<p>Oxford & Derby shoes</p>
<p>Sandals & Flips Flops</p>
<p>Slippers</p>
<p>Sneakers</p>
</div>
<div>
<h2>WMEN'S DESINERS</h2>
<p>Shop ALL</p>
<p>Boots</p>
<p>Espadrilles</p>
<p>Flats</p>
<p>Mules & slides</p>
<p>Oxfords & Loafers</p>
<p>Pumps & Heels</p>
<p>Slippers</p>
<p>Sneakers</p>
<p>Wedges</p>
<p>Oxfords & Loafers</p>
<p>Pumps & Heels</p>
<p>Slippers</p>
<p>Sneakers</p>
<p>Wedges</p>
</div>
<div>
<img
src="https://cdn.shopify.com/s/files/1/0248/3473/6191/files/SHOES-MEN.jpg?4112"
alt=""
/>
<p>DRIVERS, LOAFERS & SLIP-ONS</p>
<p>UP TO 60% OFF</p>
</div>
</div>
</a>
</li>
<li>
<a href="" class="dropbar">HANDBAG & ACCESSORIES</a>
</li>
<li>
<a href="" class="dropbar">DESIGNERS</a>
</li>
<li>
<a href="" class="dropbar">SUNGLASESS</a>
</li>
<li>
<a href="" class="dropbar">JEWELRY & WATCHES</a>
</li>
<li>
<a href="" class="dropbar">UNDER $50</a>
</li>
<li>
<a href="" class="dropbar">CLEARANCE</a>
</li>
</ul>
</div>
</div>
<!-- announcements -->
<div id="announcement">
<span id="welcome">WELCOME TO BLUEFLY:</span>
<span id="subwelcom">Luxuary brands at discounted prices</span>
</div>
<!-- slideshow div -->
<div
id="carouselExampleCaptions1"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img
src="./slideshow/valentino.png"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption">
<div class="sheadak">
<h1>world of Valentino up to 85% off</h1>
<p>shop Handbags , Shoes , Apparel , Accessories & More</p>
<button>SHOP VALENTINO</button>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./slideshow/gucci.png" class="d-block w-100" alt="..." />
<div class="carousel-caption">
<div class="sheadak">
<h1>gucci up to 70% off</h1>
<p>
THIS ICONIC BRAND IS REPRENTED WITH GREAT DESIGN & CONTEMPORARY
LIFESTYLES
</p>
<button>SHOP NOW</button>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./slideshow/bottega.png" class="d-block w-100" alt="..." />
<div class="carousel-caption">
<div class="sheadak">
<h1>bottega veneta up to 65% off</h1>
<p>UNSARPASSED CRAFTSMANSHIP & THIS SIGNATURE WOMEN LEATHER</p>
<button>SHOP NOW</button>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./slideshow/prada.png" class="d-block w-100" alt="..." />
<div class="carousel-caption">
<div class="sheadak">
<h1>PRADA UP TO 75% OFF MILA</h1>
<p>AN ITALIAN FASHION HOUSE MADE WITH CASSIC & ECCENTRIDSLE</p>
<button>SHOP NOW</button>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./slideshow/endi.png" class="d-block w-100" alt="..." />
<div class="carousel-caption">
<div class="sheadak">
<h1>FENDI UP TO 80% OFÉ</h1>
<p>
A TOP FASHION BRAND THAT CULTIVATES THE MOST ELEVATED DESIGN OF
STYLES
</p>
<button>SHOP NOW</button>
</div>
</div>
</div>
<div class="carousel-item">
<img
src="./slideshow/luxehandbag.png"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption">
<div class="sheadak">
<h1>LUXERY HANDBAGS UP TO 75% OFFF</h1>
<p>
Styles from Gucci, Prada, Saint Laurent, Bottega Veneta, Fendi &
More
</p>
<button>SHOP HANDBAGS</button>
</div>
</div>
</div>
<div class="carousel-item">
<img
src="./slideshow/designershoes.png"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption">
<div class="sheadak">
<h1>DESIGNER SHOES UP TO 85%</h1>
<p>Step Into The New Season With New Designer Shoes</p>
<button>SHOP SHOES</button>
</div>
</div>
</div>
<div class="carousel-item">
<img
src="./slideshow/sunglasess.png"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption">
<div class="sheadak">
<h1>ICONIC SUNGLASSES UP TO 85% OFF</h1>
<p>Featuring Dior , Tom Ford , Fendi & More</p>
<button>SHOP SUNGLASSES</button>
</div>
</div>
</div>
</div>
<a
class="carousel-control-prev"
data-bs-target="#carouselExampleCaptions1"
role="button"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a
class="carousel-control-next"
data-bs-target="#carouselExampleCaptions1"
role="button"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- recommended products -->
<!-- offers on brands -->
<div id="offers_div">
<div class="offer_content">
<img src="./offersimages/BLACKDRESS.png" alt="Dressimage" />
<div>
<p><b>ON TREND DRESSES</b></p>
<h1>UP TO 80% OFF</h1>
<a href=""><button>SHOP DRESSES</button></a>
</div>
</div>
<div class="offer_content">
<img src="./offersimages/designer.png" alt="Dressimage" />
<div>
<p><b>DESIGNER BOUTIQUE</b></p>
<h1>UP TO 84% OFF</h1>
<h2>
Best-selling styles from:Gucci, Valentino, Balenciaga, Stuart,
Weitzman & More
</h2>
<a href=""><button>SHOP DESIGNER'S BOUTIQUE</button></a>
</div>
</div>
<div class="offer_content">
<img src="./offersimages/tops.png" alt="Dressimage" />
<div>
<p><b>TERNDING TOPS FOR THE NEW SEASON</b></p>
<h2>Featuring Gracia, Theory, Trina Turk & More</h2>
<a href=""><button>SHOP WOMEN'S TOPS</button></a>
</div>
</div>
</div>
<hr />
<div id="shop_category">
<h3>SHOP BY CATEGORY</h3>
<div id="category">
<div>
<div id="tops"><img src="./shopbycategory/dresses.png" alt="" /></div>
<p>DRESSES</p>
</div>
<div>
<a href="productPage.html">
<div>
<img src="./shopbycategory/womensneakers.png" alt="" />
</div>
</a>
<p>WOMEN'S SNEAKERS</p>
</div>
<div>
<div><img src="./shopbycategory/bags.png" alt="" /></div>
<p>HANDBAGS</p>
</div>
<div>
<div id="goggle">
<img src="./shopbycategory/sunglasses.png" alt="" />
</div>
<p>SUNGLASSES</p>
</div>
<div>
<div><img src="./shopbycategory/pumps.png" alt="" /></div>
<p>PUMPS & HEELS</p>
</div>
<div>
<div><img src="./shopbycategory/menstshirt.png" alt="" /></div>
<p>MEN'S T-SHIRTS</p>
</div>
<div>
<div><img src="./shopbycategory/menssneakers.png" alt="" /></div>
<p>MEN'S SNEAKERS</p>
</div>
<div>
<div><img src="./shopbycategory/womenstop.png" alt="" /></div>
<p>WOMEN'S TOPS</p>
</div>
<div>
<div><img src="./shopbycategory/womensdemind.png" alt="" /></div>
<p>WOMEN'S DENIM</p>
</div>
<div>
<div><img src="./shopbycategory/jwellery.png" alt="" /></div>
<p>JEWELRY</p>
</div>
</div>
</div>
<div
id="carouselExampleCaptions2"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-inner" role="listbox">
<div class="carousel-item">
<img src="./slideshow/gucci.png" class="d-block w-100" alt="..." />
<div class="carousel-caption">
<div class="sheadak">
<h1>gucci up to 70% off</h1>
<p>
THIS ICONIC BRAND IS REPRENTED WITH GREAT DESIGN & CONTEMPORARY
LIFESTYLES
</p>
<button>SHOP NOW</button>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./slideshow/bottega.png" class="d-block w-100" alt="..." />
<div class="carousel-caption">
<div class="sheadak">
<h1>bottega veneta up to 65% off</h1>
<p>UNSARPASSED CRAFTSMANSHIP & THIS SIGNATURE WOMEN LEATHER</p>
<button>SHOP NOW</button>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./slideshow/prada.png" class="d-block w-100" alt="..." />
<div class="carousel-caption">
<div class="sheadak">
<h1>PRADA UP TO 75% OFF MILA</h1>
<p>AN ITALIAN FASHION HOUSE MADE WITH CASSIC & ECCENTRIDSLE</p>
<button>SHOP NOW</button>
</div>
</div>
</div>
<div class="carousel-item active">
<img src="./slideshow/endi.png" class="d-block w-100" alt="..." />
<div class="carousel-caption">
<div class="sheadak">
<h1>FENDI UP TO 80% OFÉ</h1>
<p>
A TOP FASHION BRAND THAT CULTIVATES THE MOST ELEVATED DESIGN OF
STYLES
</p>
<button>SHOP NOW</button>
</div>
</div>
</div>
<div class="carousel-item">
<img
src="./slideshow/luxehandbag.png"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption">
<div class="sheadak">
<h1>LUXERY HANDBAGS UP TO 75% OFFF</h1>
<p>
Styles from Gucci, Prada, Saint Laurent, Bottega Veneta, Fendi &
More
</p>
<button>SHOP HANDBAGS</button>
</div>
</div>
</div>
<div class="carousel-item">
<img
src="./slideshow/designershoes.png"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption">
<div class="sheadak">
<h1>DESIGNER SHOES UP TO 85%</h1>
<p>Step Into The New Season With New Designer Shoes</p>
<button>SHOP SHOES</button>
</div>
</div>
</div>
<div class="carousel-item">
<img
src="./slideshow/sunglasess.png"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption">
<div class="sheadak">
<h1>ICONIC SUNGLASSES UP TO 85% OFF</h1>
<p>Featuring Dior , Tom Ford , Fendi & More</p>
<button>SHOP SUNGLASSES</button>
</div>
</div>
</div>
</div>
</div>
<div class="new_arrivals">
<h1>NEW ARRIVALS</h1>
<button class="viewport">VIEW ALL</button>
<div class="new_arrivals_content">
<div class="nahover" id="na1">
<img
src="https://cdn.shopify.com/s/files/1/0248/3473/6191/products/1313541556_RLLZ_1_360x.jpg?v=1675946389"
alt=""
/>
<div class="productDetails">
<div class="shopNow">QUCIK VIEW</div>
<h3>MANOLO BLAHNIK ELBOLITA 90 SATIN PUMP</h3>
</div>
<div class="productDetails">
<p>$1426</p>
<p>$1116.36</p>
<p>Save 22%</p>
</div>
</div>
<div class="nahover" id="na2">
<img
src="https://cdn.shopify.com/s/files/1/0248/3473/6191/products/1313541557_RLLZ_1_360x.jpg?v=1675783832"
alt=""
/>
<div class="productDetails">
<div class="shopNow">QUCIK VIEW</div>
<h3>MANOLO BLAHNIK AMELIE 90 SUEDE & LEATHER SANDAL</h3>
</div>
<div class="productDetails">
<p>$1045</p>
<p>$859.9</p>
<p>Save 18%</p>
</div>
</div>
<div class="nahover" id="na3">
<img
src="https://cdn.shopify.com/s/files/1/0248/3473/6191/products/1111166123_RLLZ_1_360x.jpg?v=1675783589"
alt=""
/>
<div class="productDetails">
<div class="shopNow">QUCIK VIEW</div>
<h3>SALVATORE FERRAGAMO CANVAS SHOULDER BAG</h3>
</div>
<div class="productDetails">
<p>$1426</p>
<p>$1116.36</p>
<p>Save 22%</p>
</div>
</div>
<div class="nahover" id="na5">
<img
src="https://cdn.shopify.com/s/files/1/0248/3473/6191/products/1411103109_RLLZ_1_360x.jpg?v=1675783780"
alt=""
/>
<div class="productDetails">
<div class="shopNow">QUCIK VIEW</div>
<h3>ALICE + OLIVIA ANALISE PINK MID DRESS</h3>
</div>
<div class="productDetails">
<p>$759</p>
<p>$319.99</p>
<p>Save 60%</p>
</div>
</div>
</div>
</div>
<div id="bottom">
<div id="bottom1">
<div>
<div>
<h3>ABOUT US</h3>
<h3>Contact Us</h3>
<h3>Frequently Asked Questions</h3>
<h3>Shipping & Returns</h3>
<h3>Pre-Owned Guide</h3>
</div>
<div>
<h3><br /></h3>
<h3>Sell on Bluefly</h3>
<h3>Privacy Policy</h3>
<h3>Terms & Conditions</h3>
<h3>Do not sell my personal information</h3>
</div>
</div>
<div>
<h3>SIGN UP AND SAVE</h3>
<h4>Subscribe to get exclusive offers on designer brands</h4>
<input
id="email2"
placeholder="Enter your email"
style="color: black"
/><br />
<h3></h3>
<button>Subscribe</button>
</div>
</div>
<div id="bottom2">
<img
src="https://cdn.shopify.com/s/files/1/0248/3473/6191/files/Untitled_2_.png_5_x104@2x.png?v=1620852820"
/>
<h4>
© 2023 Bluefly 1998-2020 BLUEFLY.COM OR ITS AFFILIATES ALL RIGHTS
RESERVED.
</h4>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
</body>
<script>
var parr = [
{
image_url:
"https://cdn.shopify.com/s/files/1/0248/3473/6191/products/591070wa2m-01000__1_180x.jpg?v=1666205739",
Name: " BALENCIAGA WOMENS HEELS ",
Details: " Ladies Fancy Sandel",
Edetails: " 38.5/Black",
price: 799,
Quantity: 1,
Fprice: 799,
},
{
image_url:
"https://cdn.shopify.com/s/files/1/0248/3473/6191/products/1313406501_RLLZ_1_180x.jpg?v=1675411891",
Name: " MCM MONOGRAM VISETOS SLIDE",
Details: " Ladies Fancy Sleeper",
Edetails: " 36/black-red",
price: 192,
Quantity: 1,
Fprice: 192,
},
{
image_url:
"https://cdn.shopify.com/s/files/1/0248/3473/6191/products/1760717_180x.jpg?v=1668466735",
Name: " HERON PRESTON WHITE 'PULL' SNEAKER BOOTS ",
Details: "Ladies Stylish Shoe",
Edetails: " 9/White",
price: 351,
Quantity: 1,
Fprice: 351,
},
{
image_url:
"https://cdn.shopify.com/s/files/1/0248/3473/6191/products/SnYVrQUVUb0fu82WPvXPZoJkm9OzLOnZ-25_180x.jpg?v=1675756266",
Name: "CANELLA WOMENS SUEDE SLIP ON LOAFERS ",
Details: " Stylish White Sneaker of ladies",
Edetails: " 7.5/White",
price: 183,
Quantity: 1,
Fprice: 183,
},
];
localStorage.setItem("checkCart", JSON.stringify(parr));
</script>
</html>