forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
602 lines (545 loc) · 29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flipkart</title>
<link rel="icon" type="image/x-icon" href="images/flipkart_lite.png">
<link rel="stylesheet" href="style.css" />
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-..." crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
* {
padding: 0;
margin: 0;
}
html,
body {
position: relative;
height: 100%;
background: #eee;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color: #000;
margin: 0;
padding: 0;
}
.swiper {
width: 100%;
height: 100%;
}
.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}
.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flipkart</title>
<link rel="icon" type="image/x-icon" href="/flipkart favicon-modified.png">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-..." crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<style>
*{
padding: 0;
margin: 0;
}
html,
body {
position: relative;
height: 100%;
background: white;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color: #000;
margin: 0;
padding: 0;
}
.swiper {
width: 100%;
height: 100%;
}
.swiper-slide{
text-align: center;
font-size: 18px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}
.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
#navbar-container {
position: fixed;
top: 0;right: 0;
width: 100%;
height: 10vh;
z-index: 600;
}
#carousal {
padding: 18vh 2% 15px;
width: 100%;
}
#top-deals {
width: 100%;
height: max-content;
}
@keyframes slideInFromLeft {
0% {
transform: translateX(-100%);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
.bi-question-circle-fill,.bi-gift-fill,.bi-briefcase-fill
{
color: #ffc600;
}
/* Apply the animation to the footer sections */
.footer-section {
animation: slideInFromLeft 0.5s ease forwards;
}
#carouselExampleIndicators{
padding: 60px;
}
</style>
</head>
<body>
<!-- inline stylesheet -->
<!-- internal css -->
<!-- external css -->
<!-- id, class -->
<!-- navbar -->
<div id="navbar-container"></div>
<!-- preloader -->
<div id="loader"></div>
<!-- category list -->
<div id="category-list"></div>
<!-- carousel -->
<section id="carousal">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="./images/add1.jpg" style="width: 100vw;" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./images/add2.jpg" style="width: 100vw;" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./images/add3.png" style="width: 100vw;" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</section>
</section>
<section id="phones">
<div><h3>Best Deals On Smartphones..</h3></div>
<div id="box">
<div class="box-i">
<a href=""><img src="phone-6.webp" alt="" width="143" height="146"/></a>
poco m6 pro
</div>
<div class="box-i">
<a href=""><img src="phone-2.webp" alt="" width="143" height="146"/></a>
moto edge 40 neo
</div>
<div class="box-i">
<a href=""><img src="phone-3.webp" alt=""width="143" height="146" /></a>
vivo t2 pro 5g
</div>
<div class="box-i">
<a href=""><img src="phon-4.webp" alt=""width="143" height="146" /></a>
redmi 12 5g
</div>
<div class="box-i">
<a href=""><img src="phone-5.webp" alt=""width="143" height="146" /></a>
poco x6 5g
</div>
<div class="box-i">
<a href=""><img src="phone-2.webp" alt=""width="143" height="146" /></a>
poco m6 5g
</div>
<div class="box-i">
<a href=""><img src="phone-3.webp" alt=""width="143" height="146" /></a>
poco x6 neo 5g
</div>
</div>
</section>
<!-- newsection for grid items -->
<section id="img-box">
<a href=""
><div class="img"><img src="grid-1.webp" alt="" /></div
></a>
<a href=""
><div class="img"><img src="grid-2.jpg" alt="" /></div
></a>
<a href="">
<div class="img"><img src="grid-3.jpg" alt="" /></div
></a>
<a href=""
><div class="img"><img src="grid-1.webp" alt="" /></div
></a>
</section>
<!-- top deals -->
<div id="top-deals"></div>
<!-- -grid for deals -->
<section id="category-grid">
<img class="category" src="./images/deal5.png" alt="deal1">
<img class="category" src="./images/deal6.png" alt="deal1">
<img class="category" src="./images/deal1.png" alt="deal1">
<img class="category" src="./images/deal7.png" alt="deal1">
<img class="category" src="./images/deal8.png" alt="deal1">
<img class="category" src="./images/deal9.png" alt="deal1">
<img class="category" src="./images/deal10.png" alt="deal1">
<img class="category" src="./images/deal11.png" alt="deal1">
<img class="category" src="./images/deal12.png" alt="deal1">
</section>
<section>
<div class="details">
<div class="info">
<div>
<p class="main">Flipkart: The One-stop Shopping Destination</p>
E-commerce is revolutionizing the way we all shop in India. Why do you want to hop from one store to another in search of the latest phone when you can find it on the Internet in a single click? Not only mobiles. Flipkart houses everything you can possibly imagine, from trending electronics like laptops, tablets, smartphones, and mobile accessories to in-vogue fashion staples like shoes, clothing and lifestyle accessories; from modern furniture like sofa sets, dining tables, and wardrobes to appliances that make your life easy like washing machines, TVs, ACs, mixer grinder juicers and other time-saving kitchen and small appliances; from home furnishings like cushion covers, mattresses and bedsheets to toys and musical instruments, we got them all covered. You name it, and you can stay assured about finding them all here. For those of you with erratic working hours, Flipkart is your best bet. Shop in your PJs, at night or in the wee hours of the morning. This e-commerce never shuts down.
<br><br>
What's more, with our year-round shopping festivals and events, our prices are irresistible. We're sure you'll find yourself picking up more than what you had in mind. If you are wondering why you should shop from Flipkart when there are multiple options available to you, well, the below will answer your question.
<br><br>
<p class="main">Flipkart Plus</p>
A world of limitless possibilities awaits you - Flipkart Plus was kickstarted as a loyalty reward programme for all its regular customers at zero subscription fee. All you need is 500 supercoins to be a part of this service. For every 100 rupees spent on Flipkart order, Plus members earns 4 supercoins & non-plus members earn 2 supercoins. Free delivery, early access during sales and shopping festivals, exchange offers and priority customer service are the top benefits to a Flipkart Plus member. In short, earn more when you shop more!
<br><br>
What's more, you can even use the Flipkart supercoins for a number of exciting services, like:
<br>
An annual Zomato Gold membership
<br>
An annual Hotstar Premium membership
<br>
6 months Gaana plus subscription
<br>
Rupees 550 instant discount on flights on ixigo
<br>
Check out https://www.flipkart.com/plus/all-offers for the entire list. Terms and conditions apply.
<br><br>
<p class="heading">No Cost EMI</p>
In an attempt to make high-end products accessible to all, our No Cost EMI plan enables you to shop with us under EMI, without shelling out any processing fee. Applicable on select mobiles, laptops, large and small appliances, furniture, electronics and watches, you can now shop without burning a hole in your pocket. If you've been eyeing a product for a long time, chances are it may be up for a no cost EMI. Take a look ASAP! Terms and conditions apply.
<br><br>
<p class="heading">EMI on Debit Cards</p>
Did you know debit card holders account for 79.38 crore in the country, while there are only 3.14 crore credit card holders? After enabling EMI on Credit Cards, in another attempt to make online shopping accessible to everyone, Flipkart introduces EMI on Debit Cards, empowering you to shop confidently with us without having to worry about pauses in monthly cash flow. At present, we have partnered with Axis Bank, HDFC Bank, State Bank of India and ICICI Bank for this facility. More power to all our shoppers! Terms and conditions apply.
<br><br>
<p class="heading">Mobile Exchange Offers</p>
Get an instant discount on the phone that you have been eyeing on. Exchange your old mobile for a new one after the Flipkart experts calculate the value of your old phone, provided it is in a working condition without damage to the screen. If a phone is applicable for an exchange offer, you will see the 'Buy with Exchange' option on the product description of the phone. So, be smart, always opt for an exchange wherever possible. Terms and conditions apply.
<br><br>
<p class="main">What Can You Buy From Flipkart?</p>
<p class="heading">Mobile Phones</p>
From budget phones to state-of-the-art smartphones, we have a mobile for everybody out there. Whether you're looking for larger, fuller screens, power-packed batteries, blazing-fast processors, beautification apps, high-tech selfie cameras or just large internal space, we take care of all the essentials. Shop from top brands in the country like Samsung, Apple, Oppo, Xiaomi, Realme, Vivo, and Honor to name a few. Rest assured, you're buying from only the most reliable names in the market. What's more, with Flipkart's Complete Mobile Protection Plan, you will never again find the need to run around service centres. This plan entails you to a number of post-purchase solutions, starting at as low as Rupees 99 only! Broken screens, liquid damage to phone, hardware and software glitches, and replacements -
<b>the Flipkart Complete Mobile Protection</b>
covers a comprehensive range of post-purchase problems, with door-to-door services.
<br><br>
<p class="heading">Electronic Devices and Accessories</p>
When it comes to laptops, we are not far behind. Filter among dozens of super-fast operating systems, hard disk capacity, RAM, lifestyle, screen size and many other criterias for personalized results in a flash. All you students out there, confused about what laptop to get? Our
<b>Back To College Store</b>
segregates laptops purpose wise (gaming, browsing and research, project work, entertainment, design, multitasking) with recommendations from top brands and industry experts, facilitating a shopping experience that is quicker and simpler.
<br><br>
Photography lovers, you couldn't land at a better page than ours. Cutting-edge DSLR cameras, ever reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for adventure junkies: our range of cameras is as much for beginners as it is for professionals. Canon, Nikon, GoPro, Sony, and Fujifilm are some big names you'll find in our store. Photography lovers, you couldn't land at a better page than ours. Cutting-edge DSLR cameras, ever reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for adventure junkies: our range of cameras is as much for beginners as it is for professionals. Canon, Nikon, GoPro, Sony, and Fujifilm are some big names you'll find in our store.
<br><br>
Turn your home into a theatre with a stunning surround sound system. Choose from our elaborate range of Sony home theatres, JBL soundbars and Philips tower speakers for an experience to remember.
<br><br>
How about jazzing up your phone with our quirky designer cases and covers? Our wide-ranging mobile accessories starting from headphones, power banks, memory cards, mobile chargers, to selfie sticks can prove to be ideal travel companions for you and your phone; never again worry about running out of charge or memory on your next vacation.
<br><br>
<p class="heading">Large Appliances</p>
Sleek TVs, power-saving refrigerators, rapid-cooling ACs, resourceful washing machines - discover everything you need to run a house under one roof. Our
<b>Dependable TV and Appliance Store</b>
ensures zero transit damage, with a replacement guarantee if anything goes wrong; delivery and installation as per your convenience and a double warranty (Official Brand Warranty along with an extended Flipkart Warranty) - rest assured, value for money is what is promised and delivered. Shop from market leaders in the country like Samsung, LG, Whirlpool, Midea, Mi, Vu, Panasonic, Godrej, Sony, Daikin, and Hitachi among many others.
<br><br>
For certain product categories, Customers meeting the eligibility criteria will have the option to buy larger quantities. To know more on the eligibility criteria and terms and conditions, please reach out to
<a href="mailto:[email protected]">[email protected]</a>.
<br><br>
<p class="heading">Small Home Appliances</p>
Find handy and practical home appliances designed to make your life simpler: electric kettles, OTGs, microwave ovens, sandwich makers, hand blenders, coffee makers, and many more other time-saving appliances that are truly crafted for a quicker lifestyle. Live life king size with these appliances at home.
<br><br>
<p class="main">Lifestyle</p>
Flipkart,
<b>'India ka Fashion Capital'</b>
, is your one-stop fashion destination for anything and everything you need to look good. Our exhaustive range of Western and Indian wear, summer and winter clothing, formal and casual footwear, bridal and artificial jewellery, long-lasting make-up, grooming tools and accessories are sure to sweep you off your feet. Shop from crowd favourites like Vero Moda, Forever 21, Only, Arrow, Woodland, Nike, Puma, Revlon, Mac, and Sephora among dozens of other top-of-the-ladder names. From summer staple maxi dresses, no-nonsense cigarette pants, traditional Bandhani kurtis to street-smart biker jackets, you can rely on us for a wardrobe that is up to date. Explore our in-house brands like Metronaut, Anmi, and Denizen, to name a few, for carefully curated designs that are the talk of the town. Get ready to be spoiled for choice.Festivals, office get-togethers, weddings, brunches, or nightwear - Flipkart will have your back each time.
<br><br>
<p class="heading">Home and Furniture</p>
Moving to a new place is never easy, especially if you're buying new furniture. Beds, sofa sets, dining tables, wardrobes, and TV units - it's not easy to set up everything again. With the hundreds of options thrown at you, the ride could be overwhelming. What place is reliable, what furniture will stand the test of time? These are questions you must ask before you choose a store. Well, our
<b>Durability Certified Furniture Store</b>
has not only curated a range of furniture keeping in mind the modern Indian consumer but furniture that comes with a lab certification, ensuring they last you for up to 10 years. Yes, all our furniture has gone through 35 stability and load tests so that you receive only the best-quality furniture.
<b>Be FurniSure</b>
, always. Names to look out for are Nilkamal, Godrej Interio, Urban Ladder, HomeTown, Durian and Perfect Homes.
<br><br>
You may have your furniture all set up, but they could end up looking flat and incomplete without complementary decor. Curtains, cushion covers, bed sheets, wall shelves, paintings, floor lamps - find everything that turns a house to an inviting home under one roof at Flipkart.
<br><br>
<p class="heading">Baby and Kids</p>
Your kids deserve only the best. From bodysuits, booties, diapers to strollers, if you're an expecting mother or a new mother, you will find everything you need to set sail on a smooth parenting journey with the help of our baby care collection. When it comes to safety, hygiene and comfort, you can rely on us without a second thought. Huggies, Pampers, MamyPoko, and Johnson & Johnson: we host only the most-trusted names in the business for your baby.
<br><br>
<p class="heading">Books, Sports and Games</p>
Work hard and no play? We don't believe in that. Get access to best-selling fiction and non-fiction books by your favourite authors, thrilling English and Indian blockbusters, most-wanted gaming consoles, and a tempting range of fitness and sports gadgets and equipment bound to inspire you to get moving.
<br><br>
<p class="heading">Grocery/Supermart</p>
Launching into the grocery vertical, Flipkart introduces
<b>Supermart</b>
that is out to bring everyday essentials close to you. From pulses, spices, dairy, personal and sanitary care, breakfast essentials, health drinks, spreads, ready to cook, grooming to cleaning agents, we are happy to present everything you need to run a house. Now buy Grocery products for as low as 1 Rupee only - our
<b>1 Rupee Store</b>
presents new products every day for a nominal price of 1 Rupee only. Terms and conditions apply.
</div>
</div>
</div>
</section>
<footer>
<div class="foot-top">
<div class="foot-left">
<div class="about">
<h5>ABOUT</h5>
<ul>
<li><a href="">Contact Us</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Careers</a></li>
<li><a href="">Flipkart Stories</a></li>
<li><a href="">Press</a></li>
<li><a href="">Corporate Information</a></li>
<li><i><a href="">Explore Plus</a></i></li>
</ul>
</div>
<div class="about">
<h5>GROUP COMPANIES</h5>
<ul>
<li><a href="https://www.myntra.com/">Myntra</a></li>
<li><a href="https://www.flipkartwholesale.com/">Flipkart Wholesale</a></li>
<li><a href="https://www.cleartrip.com/">Cleartrip</a></li>
<li><a href="https://www.shopsy.in/">Shopsy</a></li>
</ul>
</div>
<div class="about">
<h5>HELP</h5>
<ul>
<li><a href="">Payments</a></li>
<li><a href="">Shipping</a></li>
<li><a href="">Cancellation & Returns</a></li>
<li><a href="">FAQ</a></li>
<li><a href="">Report Infringement</a></li>
</ul>
</div>
<div class="about">
<div id="policy">
<h5>CONSUMER POLICY</h5>
<ul>
<li><a href="">Cancellation & Returns</a></li>
<li><a href="">Terms Of Use</a></li>
<li><a href="">Security</a></li>
<li><a href="">Privacy</a></li>
<li><a href="">Sitemap</a></li>
<li><a href="">Grievance Redressal</a></li>
<li><a href="">EPR Compilance</a></li>
</ul>
</div>
</div>
</div>
<div class="foot-right">
<div class="part">
<div class="mail">
<h5>Mail Us:</h5>
<p>
Flipkart Internet Private Limited,
Buildings Alyssa, Begonia & Clove Embassy Tech Village,
Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India
</p>
</div>
<div class="social">
<h5>Social</h5>
<ul>
<li><a href="https://www.facebook.com/flipkart/"><i class="bi bi-facebook"></i></a></li>
<li><a href="https://twitter.com/Flipkart"><i class="bi bi-twitter"></i></a></li>
<li><a href="https://www.youtube.com/flipkart"><i class="bi bi-youtube"></i></a></li>
</ul>
</div>
</div>
<div class="office">
<h5>Registered Office Address:</h5>
<p>Flipkart Internet Private Limited,
Buildings Alyssa, Begonia & Clove Embassy Tech Village,
Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India</p>
<p>CIN : U51109KA2012PTC066107</p>
<P>Telephone: <a href="">044-45614700</a></P>
</div>
</div>
</div>
<div class="foot-down">
<div>
<ul>
<li><a href=""><i class="bi bi-briefcase-fill"></i> Become a seller</a></li>
<li><a href=""><i class="bi bi-gift-fill"></i> Gift Cards</a></li>
<li><a href=""><i class="bi bi-question-circle-fill"></i> Help Center</a></li>
<div>
<li>©<span class="update_Cyear"></span> Flipkart.com</li>
</div>
</ul>
</div>
<div class="payment-icons">
<img src="visa.jpeg" alt="Visa">
<img src="mastercard.jpeg" alt="Mastercard">
<img src="images/rupay.png" alt="rupay">
<img src="images/discover.png" alt="discover">
<img src="images/emi.png" alt="emi">
<img src="images/net_banking.png" alt="net banking">
<img src="images/cod.png" alt="cash on delivery">
</div>
</div>
</footer>
<!-- <section id="footer">
<div>
<li class="heading">About</li>
<li><a href="https://corporate.flipkart.net/corporate-home">About Us </a></li>
<li><a href="https://www.flipkartcareers.com/?otracker=${otracker}_navlinks">Career</a></li>
<li> <a href="http://stories.flipkart.com/">Stories</a></li>
<li><a href="https://www.cleartrip.com/">Cleartrip</a></li>
</div>
<div>
<li class="heading">Help</li>
<li><a href="https://www.flipkart.com/pages/payments">Payments </a></li>
<li><a href="https://www.flipkart.com/pages/shipping">Shippings</a></li>
<li> <a href="https://www.flipkart.com/helpcentre?catalog=55c9c8e2b0000023002c1702&view=CATALOG">FAQ</a></li>
</div>
<div>
<li class="heading">CONUSMER POLICY</li>
<li><a href="https://corporate.flipkart.net/corporate-home">About Us </a></li>
<li><a href="https://www.flipkartcareers.com/?otracker=${otracker}_navlinks">Career</a></li>
<li> <a href="http://stories.flipkart.com/">Stories</a></li>
<li><a href="https://www.cleartrip.com/">Cleartrip</a></li>
</div>
<div>
<li class="heading">Follow us on</li>
<li><a href="https://www.twitter.com/flipkart">Twitter</a></li>
<li><a href="https://www.youtube.com/flipkart">Youtube</a></li>
<li><a href="https://www.facebook.com/flipkart">Facebook</a></li>
</div>
<div>
<li class="heading">Address</li>
<P> Vaishnavi Summit, Ground Floor,</P>
<P> 7th Main, 80 Feet Road, 3rd Block,</P>
<P> Koramangala Industrial</P>
<P>Layout, Bangalore KA </P>
<P> IN 560034. </P>
</div>
<div>
<li class="heading">Contact us</li>
<li>About Us</li>
<li>Career</li>
<li>Flipkart Stories</li>
<li>Cleartrip</li>
</div>
</section> -->
<!-- <footer>
<div class="footer-top">
<div class="footer-section">
<h3>ABOUT</h3>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Flipkart Stories</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Corporate Information</a></li>
</ul>
</div>
<div class="footer-bottom">
Content for footer-bottom goes here -->
<!-- </div> -->
<!-- </section> -->
<!-- End Footer Section -->
<!-- jQuery and Swiper Script -->
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script>
// $(function () {
// $("#navbar-container").load("./Navabar.html");
// });
</script>
<!-- <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script> -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<!-- <script src="./index.js"> -->
</script>
<script>
$(function () {
$("#loader").load("./preloader.html");
$("#category-list").load("./categorylist.html");
$("#top-deals").load("./topdeals.html");
});
fetch('./Navabar.html')
.then(response => response.text())
.then(data => {
// Insert the retrieved HTML content into the navbar-container
document.getElementById('navbar-container').innerHTML = data;
})
.catch(error => console.error('Error fetching navbar:', error));
</script>
<script>
// Get the current year
var currentYear = new Date().getFullYear();
// Update the content of elements with class 'update_Cyear'
var updateElements = document.getElementsByClassName("update_Cyear");
for (var i = 0; i < updateElements.length; i++) {
updateElements[i].innerText = currentYear;
}
</script>
<script type="module" src="https://cdn.jsdelivr.net/npm/@bufferhead/[email protected]/dist/nightowl.js"></script>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
<script>
if('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js', { scope: '/' });
}
</script>
<a href="#" class="back-to-top">
<span class="material-icons">arrow_upward</span>
</a>
</body>
</html>
</html>