-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
632 lines (551 loc) · 31.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
<!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">
<!-- loginSignup below -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"> -->
<!-- navbar below -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="index.css">
<link rel="icon" type="image/x-icon" href="./Images/th.jpg">
<title>Go Grocery</title>
</head>
<style>
.topnav{
display: none;
}
body {margin:0;font-family:Arial}
.topnav {
overflow: hidden;
background-color: green;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.active {
/* background-color: #04AA6D; */
color: white;
}
.topnav .icon {
display: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 17px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.topnav a:hover, .dropdown:hover .dropbtn {
background-color: #555;
color: white;
}
.dropdown-content a:hover {
background-color: #ddd;
color: black;
}
.dropdown:hover .dropdown-content {
display: block;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child), .dropdown .dropbtn {
/* display: none; */
}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 1608px) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
.topnav.responsive .dropdown {float: none;}
.topnav.responsive .dropdown-content {position: relative;}
.topnav.responsive .dropdown .dropbtn {
display: block;
width: 100%;
text-align: left;
}
.topnav{
display: block;
}
.navbar{
display: none;
}
}
</style>
<body>
<!-- Login Section -->
<div class="loginSignup">
<div>
<span class="glyphicon glyphicon-user"></span>
<a href="login.html">Login</a>
<a href="login.html">Sign Up</a>
<a href="./AdminSide/login.html">Admin</a>
</div>
<div><span class="glyphicon glyphicon-earphone"></span>9934524961</div>
<!-- <div id="slideShowoffer"> -->
<!-- <h1 id="slideShowoffer"></h1> -->
<!-- </div> -->
</div>
<!-- Navbar -->
<div class="navbar">
<div>
<a href="./index.html" class="logo"><img src="./Images/th.jpg" alt=""></a>
<!-- <a href="#news">News</a> -->
<div class="dropdown">
<button class="dropbtn">Shop By Category
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="./product.html">Fruits & Vegetables</a>
<a href="./product.html">Foodgrains, Oil & Masala</a>
<a href="./product.html">Bakery, Cakes & Dairy</a>
<a href="./product.html">Beverages</a>
<a href="./product.html">Snacks & Branded Foods</a>
<a href="./product.html">Beauty & Hygiene</a>
<a href="./product.html">Cleaning & Household</a>
<a href="./product.html">Kitchen, Garden & Pets</a>
<a href="./product.html">Baby Care</a>
<a href="./product.html">Gourment & World Food</a>
</div>
</div>
</div>
<div class="search">
<input type="text" placeholder="Search" id="search">
<button id="searchButton">Search</button>
</div>
<div class="logoDiv">
<div class="dropdown">
<button class="dropbtn" id="aboutUs">About Us
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="#" id="profile">Contact</a>
<a href="#" id="settings">Email</a>
<a href="#" id="Logout">Twitter</a>
</div>
</div>
<!-- <a href=""></a> -->
<a href="" id="cartLogo"><img src="https://th.bing.com/th/id/OIP.zHTLioryIoQ8_AS2VFLVnwHaHa?w=170&h=180&c=7&r=0&o=5&dpr=1.3&pid=1.7" alt=""></a>
</div>
</div>
<!-- 2ND NAVBAR -->
<div class="topnav" id="myTopnav">
<!-- <a href="#home" class="active">Home</a> -->
<!-- <a href="#news">News</a> -->
<!-- <a href="#contact">Contact</a> -->
<div class="dropdown">
<button class="dropbtn">Shop By Category
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="./product.html">Fruits & Vegetables</a>
<a href="./product.html">Foodgrains, Oil & Masala</a>
<a href="./product.html">Bakery, Cakes & Dairy</a>
<a href="./product.html">Beverages</a>
<a href="./product.html">Snacks & Branded Foods</a>
<a href="./product.html">Beauty & Hygiene</a>
<a href="./product.html">Cleaning & Household</a>
<a href="./product.html">Kitchen, Garden & Pets</a>
<a href="./product.html">Baby Care</a>
<a href="./product.html">Gourment & World Food</a>
</div>
</div>
<!-- <a href="#about">About</a> -->
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">☰</a>
</div>
<div id="mainParentDiv">
<!-- slide show -->
<div id="slideShow">
<!-- <button>click</button> -->
<!-- <img src="" alt="" id="imageSlideShowSection"> -->
</div>
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Most Popular</h2>
<hr>
</div>
<!-- Beauty and Hugiene items Sections -->
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/ee20c95c-230b-49a6-9386-63590af643b6/hp_fnv-mangoes_m_480_250323_01.jpg" alt="Make Carnival Error">
</div>
<div class="BeautyandHugieneImageDiv items">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/ee20c95c-230b-49a6-9386-63590af643b6/hp_summer-bottles_m_480_250323_02.jpg" alt="Sun Screams Scream">
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/ee20c95c-230b-49a6-9386-63590af643b6/hp_sunscreens_m_480_250323_03.jpg" alt="Sentful Cream">
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/ee20c95c-230b-49a6-9386-63590af643b6/hp_summer-deos_m_480_250323_04_.jpg" alt="Savings Saviours">
</div>
</div>
<!-- Top Offers -->
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Top Offers</h2>
<hr>
</div>
<!-- Top Offers items Sections -->
<!-- <div id="BeautyandHugieneItemsMainSections"></div> -->
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/e8c51ca5-7a61-4b28-97a5-eacb8a8e3582/hp_dow-topoffersStorefront_m_480_250323_01.jpg" alt="Make Carnival Error">
</div>
<div class="BeautyandHugieneImageDiv items">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/e8c51ca5-7a61-4b28-97a5-eacb8a8e3582/hp_big-packs-topoffersStorefront_m_480_250323_02.jpg" alt="Sun Screams Scream">
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/e8c51ca5-7a61-4b28-97a5-eacb8a8e3582/hp_combos-topoffersStorefront_m_480_250323_03.jpg" alt="Sentful Cream">
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/e8c51ca5-7a61-4b28-97a5-eacb8a8e3582/hp_30-corner-topoffersStorefront_m_480_250323_04.jpg" alt="Savings Saviours">
</div>
</div>
<!-- <span id="dots">....</span>
<button id="myBtn">Load More</button> -->
<!-- Fruits and Vegetables -->
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Fruits and Vegetables</h2>
<hr>
</div>
<!-- Fruits and Vegetables items Sections -->
<div>
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<a href="./product.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/eceafe85-3773-4a8b-b335-cb2bfbec01ce/hp_organic-fnc-fnv_Storefront_m_250323_01.jpg" alt="Make Carnival Error"></a>
</div>
<div class="BeautyandHugieneImageDiv items">
<a href="./product.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/eceafe85-3773-4a8b-b335-cb2bfbec01ce/hp_fresh-fruits-fnv_Storefront_m_250323_02.jpg" alt="Sun Screams Scream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href="./product.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/eceafe85-3773-4a8b-b335-cb2bfbec01ce/hp_fresh-vegetables-fnv_Storefront_m_250323_03.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href="./product.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/eceafe85-3773-4a8b-b335-cb2bfbec01ce/hp_cuts-sprouts-fnv_Storefront_m_250323_04.jpg" alt="Savings Saviours"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./product.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/eceafe85-3773-4a8b-b335-cb2bfbec01ce/hp_exotic-fruits-fnv_Storefront_m_250323_05.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./product.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/eceafe85-3773-4a8b-b335-cb2bfbec01ce/hp_herbs-seasonings-fnv_Storefront_m_250323_06.jpg" alt="Savings Saviours"></a>
</div>
</div>
</div>
<!-- Your Daily Staples -->
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Your Daily Staples</h2>
<hr>
</div>
<!-- Your Daily Staples items Sections -->
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/4070b03c-7096-446a-b583-fe54b5b9c5a7/hp_atta-flour-staplesStorefront_m_480_250323_01.jpg" alt="Make Carnival Error"></a>
</div>
<div class="BeautyandHugieneImageDiv items">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/4070b03c-7096-446a-b583-fe54b5b9c5a7/hp_rice-staplesStorefront_m_480_250323_02.jpg" alt="Sun Screams Scream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/4070b03c-7096-446a-b583-fe54b5b9c5a7/hp_dals-pulses-staplesStorefront_m_480_250323_03.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href=""><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/4070b03c-7096-446a-b583-fe54b5b9c5a7/hp_cooking-oils-staplesStorefront_m_480_250323_04.jpg" alt="Savings Saviours"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/4070b03c-7096-446a-b583-fe54b5b9c5a7/hp_dry-fruits-staplesStorefront_m_480_250323_05.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/4070b03c-7096-446a-b583-fe54b5b9c5a7/hp_salt-staplesStorefront_m_480_250323_06.jpg" alt="Savings Saviours"></a>
</div>
</div>
<!-- Beverages -->
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Beverages</h2>
<hr>
</div>
<!-- Beverages items Sections -->
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/1e428997-2f8a-4e83-95e9-de3efbcafe50/hp_beve-health-drinks_m_250323_01.jpg" alt="Make Carnival Error"></a>
</div>
<div class="BeautyandHugieneImageDiv items">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/1e428997-2f8a-4e83-95e9-de3efbcafe50/hp_bev-tea-coff_m_250323_02.jpg" alt="Sun Screams Scream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/1e428997-2f8a-4e83-95e9-de3efbcafe50/hp_bev-flavoured-milk_m_250323_03.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href=""><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/1e428997-2f8a-4e83-95e9-de3efbcafe50/hp_beve-juices_m_250323_04.jpg" alt="Savings Saviours"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/1e428997-2f8a-4e83-95e9-de3efbcafe50/hp_bev-power-nooster_m_250323_05.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/1e428997-2f8a-4e83-95e9-de3efbcafe50/hp_bev-soft-drinks_m_250323_06.jpg" alt="Savings Saviours"></a>
</div>
</div>
<!-- Snack Store -->
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Snack Store</h2>
<hr>
</div>
<!-- Snack Store items Sections -->
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/3a91f013-48f4-4a48-822c-5253f7b475ce/hp_chai-time_m_480_250323_01.jpg" alt="Make Carnival Error">
</div>
<div class="BeautyandHugieneImageDiv items">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/3a91f013-48f4-4a48-822c-5253f7b475ce/hp_morining-start_m_480_250323_02.jpg" alt="Sun Screams Scream">
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/3a91f013-48f4-4a48-822c-5253f7b475ce/hp_satisfy-hunger_m_480_250323_03.jpg" alt="Sentful Cream">
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/3a91f013-48f4-4a48-822c-5253f7b475ce/hp_sweet-craving_m_480_250323_04.jpg" alt="Savings Saviours">
</div>
</div>
<!-- Cleaning & HouseHold -->
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Cleaning & HouseHold</h2>
<hr>
</div>
<!-- Cleaning & HouseHold items Sections -->
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/041af9db-5f22-4e5a-8da6-f9d5b5c3ec73/hp_cleaners-disfec_cleaningStorefront_m_480_250123_01.jpg" alt="Make Carnival Error">
</div>
<div class="BeautyandHugieneImageDiv items">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/041af9db-5f22-4e5a-8da6-f9d5b5c3ec73/hp_fresheners-repellem-cleaningStorefront_m_480_250123_02.jpg" alt="Sun Screams Scream">
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/041af9db-5f22-4e5a-8da6-f9d5b5c3ec73/hp_detergebts-favric-cleaningStorefront_m_480_250123_03.jpg" alt="Sentful Cream">
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/041af9db-5f22-4e5a-8da6-f9d5b5c3ec73/hp_disposable-cleaningStorefront_m_480_250123_4.jpg" alt="Savings Saviours">
</div>
</div>
<!-- heading section -->
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Beauty and Hygiene</h2>
<hr>
</div>
<!-- Beauty and Hugiene items Sections -->
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/0b6b3238-9b25-428d-bfbe-fa0a2e6defed/hp_beauty-makeup-carnival_m_250323_01.jpg" alt="Make Carnival Error"></a>
</div>
<div class="BeautyandHugieneImageDiv items">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/0b6b3238-9b25-428d-bfbe-fa0a2e6defed/hp_beauty-sunsreens_m_250323_02.jpg" alt="Sun Screams Scream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/0b6b3238-9b25-428d-bfbe-fa0a2e6defed/hp_beauty-scentful-deos_m_250323_03.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href=""><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/0b6b3238-9b25-428d-bfbe-fa0a2e6defed/hp_beauty-shaving-saviouurs_m_250323_04.jpg" alt="Savings Saviours"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/0b6b3238-9b25-428d-bfbe-fa0a2e6defed/hp_beauty-min35off_m_250323_05.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/0b6b3238-9b25-428d-bfbe-fa0a2e6defed/hp_beauty-under199_m_250323_06.jpg" alt="Savings Saviours"></a>
</div>
</div>
<!-- Home ANd Kitchen Section -->
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Home and Kitchen</h2>
<hr>
</div>
<!-- Home ANd Kitchen Items Section -->
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/7990aa10-e842-47d0-be2f-e10c37be9e2e/hp_GM-under-99_m_250323_01.jpg" alt="Make Carnival Error"></a>
</div>
<div class="BeautyandHugieneImageDiv items">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/7990aa10-e842-47d0-be2f-e10c37be9e2e/hp_GM-100-199_m_250323_02.jpg" alt="Sun Screams Scream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/7990aa10-e842-47d0-be2f-e10c37be9e2e/hp_GM-min30off_m_250323_03.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href=""><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/7990aa10-e842-47d0-be2f-e10c37be9e2e/hp_GMmin-50off_m_250323_04.jpg" alt="Savings Saviours"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/7990aa10-e842-47d0-be2f-e10c37be9e2e/hp_GM-pressiure-cooker_m_250323_05.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/7990aa10-e842-47d0-be2f-e10c37be9e2e/hp_GM-sstorage-containers_m_250323_06.jpg" alt="Savings Saviours"></a>
</div>
</div>
<!-- Brand Store Section -->
<div class="BeautyAndHygieneMainSection">
<h2 class="BeautyAndHygieneHeading2">Brand Store</h2>
<hr>
</div>
<!-- Brand Store Items Section -->
<div class="BeautyandHugieneItemsMainSections">
<div class="BeautyandHugieneImageDiv">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/71368a71-c258-4cb9-a8aa-fdcfccae7e9b/amul-hp_brandStorefront_m_480_250323_01.jpg" alt="Make Carnival Error"></a>
</div>
<div class="BeautyandHugieneImageDiv items">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/71368a71-c258-4cb9-a8aa-fdcfccae7e9b/dettol-hp_brandStorefront_m_480_250323_02.jpg" alt="Sun Screams Scream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/71368a71-c258-4cb9-a8aa-fdcfccae7e9b/coca-cola-hp_brandStorefront_m_480_250323_03.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2">
<a href=""><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/71368a71-c258-4cb9-a8aa-fdcfccae7e9b/loreal-hp_brandStorefront_m_480_250323_04.jpg" alt="Savings Saviours"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/71368a71-c258-4cb9-a8aa-fdcfccae7e9b/Baulli_hp_brandStorefront_m_480_250323_05.jpg" alt="Sentful Cream"></a>
</div>
<div class="BeautyandHugieneImageDiv items invisible2 invisible1">
<a href="./vegetables.html"><img src="https://www.bigbasket.com/media/customPage/b01eee88-e6bc-410e-993c-dedd012cf04b/6cf6d3c9-a568-4a3c-8ec2-6476ddcebad1/71368a71-c258-4cb9-a8aa-fdcfccae7e9b/durex-hp_brandStorefront_m_480_250323_06.jpg" alt="Savings Saviours"></a>
</div>
</div>
<div class="wellnessImage">
<img src="https://www.bigbasket.com/media/uploads/banner_images/hp_bbw_c_400_web_wellness_banner_1_dec_w2_14012023.jpg" alt="Did you know image error">
</div>
<div class="imageParaContent">
<h2>bigbasket – online grocery store</h2>
<p>
Did you ever imagine that the freshest of fruits and vegetables, top quality pulses and food grains,
dairy products and hundreds of branded items could be handpicked and delivered to your home,
all at the click of a button? India’s first comprehensive online megastore, bigbasket.com, brings a
whopping 20000+ products with more than 1000 brands, to over 4 million happy customers.
From household cleaning products to beauty and makeup, bigbasket has everything you need for your daily needs.
bigbasket.com is convenience personified We’ve taken away all the stress associated with shopping for daily essentials,
and you can now order all your household products and even buy groceries online without travelling long distances or s
tanding in serpentine queues. Add to this the convenience of finding all your requirements at one single source,
along with great savings, and you will realize that bigbasket- India’s largest online supermarket,
has revolutionized the way India shops for groceries. Online grocery shopping has never been easier.
Need things fresh? Whether it’s fruits and vegetables or dairy and meat, we have this covered as well!
Get fresh eggs, meat, fish and more online at your convenience. Hassle-free Home Delivery options
</p>
<!-- <br> -->
<p>We deliver to 25 cities across India and maintain excellent delivery times, ensuring that all your products from groceries to snacks branded foods reach you in time.</p>
<!-- <br> -->
<ul>
<li><p>Slotted Delivery: Pick the most convenient delivery slot to have your grocery delivered. From early morning delivery for early birds,
to late-night delivery for people who work the late shift, bigbasket caters to every schedule.</p>
</li>
<li>
<p>Express Delivery: This super useful service can be availed by customers in cities like Bangalore, Mumbai, Pune, Chennai, Kolkata,
Hyderabad and Delhi-NCR in which we deliver your orders to your doorstep in 90 Minutes.</p>
</li>
<li><p>
BB Specialty stores: Missed out on buying that essential item from your favorite neighborhood store for tonight’s party? We’ll deliver it for you! From bakery, sweets and meat to flowers and chocolates, we deliver your order in 90 minutes,
through a special arrangement with a nearby specialty store, verified by us
</p>
</li>
</ul>
</div>
<!-- //Footer -->
<div>
<div id="A_Button_Read_More_Info">
<button id="A_Read_more">Read more..</button>
<br><br><br><br>
</div>
</div>
<div id="A_Bottom_Flex">
<div>
<h3><span style="color : rgb(24, 187, 24)">bigbasket</span></h3>
<p>About Us</p>
<p>In News </p>
<p> Green bigbasket</p>
<p> Privacy Policy</p>
<p> Affiliate</p>
<p> Terms and Conditions</p>
<p> Careers At bigbasket</p>
<p> bb Instant</p>
<p> bb Daily</p>
<p> bb Blog</p>
<p> bbnow</p>
</div>
<div>
<h3><span style="color : rgb(24, 187, 24)">Help</span></h3>
<p>FAQs </p>
<p>Contact Us </p>
<p> bb Wallet FAQs </p>
<p> bb Wallet T&Cs </p>
<p> Vendor Connect</p>
</div>
<div>
<h3><span style="color : rgb(24, 187, 24)">Download Our App</span></h3>
<img src="https://www.bbassets.com/static/v2653/custPage/build/content/img/Google-App-store-icon.png" alt="error">
</div>
<div>
<h3><span style="color : rgb(24, 187, 24)">Get Social With Us</span></h3>
<img src="https://www.bbassets.com/static/v2653/custPage/build/content/img/Apple-App-store-icon.png" alt="error">
</div>
</div>
<div>
<div class="A_bottom_Table">
<h5><span style="color : rgb(24, 187, 24)">POPULAR CATEGORIES:</span></h5>
<p>Sunflower Oils, Wheat Atta, Ghee, Milk, Health Drinks, Flakes, Organic F&V, Namkeen, Eggs, Floor Cleaners, Other Juices, Leafy Vegetables, Frozen Veg Food, Diapers & Wipes,</p>
</div>
<div class="A_bottom_Table">
<h5><span style="color : rgb(24, 187, 24)">POPULAR BRANDS:</span></h5>
<p>Amul, Nescafe , MTR, RED BULL , elite cake, Pediasure, Yummiez, Yera, Yakult, Britannia, Wow Momo, Fortune , Haldirams , Ferrero, Lays, Patanjali, McCain, kwality walls, Cadbury Dairy Milk, Pedigree,</p>
</div>
<div class="A_bottom_Table">
<h5><span style="color : rgb(24, 187, 24)">CITIES WE SERVE:</span></h5>
<p>Bangalore, Hyderabad, Mumbai, Pune, Chennai, Delhi, Mysore, Madurai, Coimbatore, Vijayawada-Guntur, Kolkata, Ahmedabad-Gandhinagar, Nashik Business, Lucknow-Kanpur, Gurgaon, Vadodara, Visakhapatnam, Surat, Nagpur, Patna, Indore, Chandigarh Tricity, Jaipur, Bhopal, Noida-Ghaziabad, Kochi, Krishna District, Bhubaneshwar-Cuttack, Guwahati, Renigunta, Hubli, Davanagere, Trichy, Amravati, Raipur, Rajkot, Gwalior, Bareilly, Allahabad, Hyderabad Rural, Bangalore Rural, Chennai Rural, Vizag Rural, Lucknow Rural, Noida Rural, Ahmedabad Rural, Bhopal Rural, Bhubaneswar Rural, Coimbatore Rural, Chandigarh Rural, Gurugram Rural, Guwahati Rural, Indore Rural, Kochi Rural, Kolkata Rural, Mumbai Rural, Mysore Rural, Nagpur Rural, Patna Rural, Pune Rural, Surat Rural, Vadodara Rural, Jaipur Rural, Ranchi, Nashik, Agra, Kozhikode, Amritsar,</p>
</div>
<!-- <div class="A_bottom_Table">
<h5><span style="color : rgb(24, 187, 24)">PAYMENT OPTIONS:</span></h5>
<img src="./Images_Page_1/PAYMENT OPTIONSImage.png" alt="">
</div> -->
</div>
<br><br>
</div>
</div>
</body>
</html>
<script src="./index.js"></script>
<script src="./login.js"></script>