-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaboutus.html
505 lines (458 loc) · 24.4 KB
/
aboutus.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="style.css">
<title>About Us</title>
<script
src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"
></script>
<style>
*{
font-family: "Roboto Slab", serif;
font-size: 18px;
}
a{
text-decoration: none;
color: grey;
}
#bigcontainer{
height: auto;
width: 1300px;
/* border: 1px solid red; */
display: flex;
margin-left: 70px;
margin-bottom: 20px;
box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
color: #a9a8ba;
}
#left{
height: autopx;
width: 250px;
/* border: 1px solid red; */
margin: 20px 10px 0px 20px;
}
#side{
margin-left: 10px;
}
#smallcontainer{
height: auto;
width: 990px;
/* border: 1px solid black; */
margin-top: 20px;
}
#box{
height: auto;
width: auto;
margin-top: 20px;
/* border: 1px solid blue; */
display: flex;
}
h5{
border: 1px solid grey;
height: auto;
background-color: grey;
margin-top: 20px;
}
#para{
height: auto;
width: 990px;
/* border: 1px solid greenyellow; */
margin-left: 10px;
}
#sideimg{
margin: 30px 10px 0px 30px;
}
.timing li{
border-bottom: #e0e0e0 1px solid;
width: 50%;
padding: 9px 0 8px;
margin: 0 ;
color: #818286;
font-size: 14px;
}
h4{
margin-left: 10px;
}
</style>
</head>
<body>
<section>
<div class="container">
<div class="row">
<div class="d-sm-none d-md-block col-md-5">
</div>
<div class="col-5 text-end d-sm-none d-md-block col-md-7">
<samp class="bi bi-telephone">1860 123 1000</samp>
<samp class="bi bi-geo-alt m-2" id="top-address">Address</samp>
<samp class="bi bi-person m-1"> <a href="" data-bs-toggle="modal" data-bs-target="#staticBackdrop" id="top-name" onclick="check_login()">Login/Sign Up</a> </samp>
</div>
</div>
</div>
</section>
<section>
<!-- Modal for login-->
<div id="login-check-pop">
<div class="modal fade" id="staticBackdrop2" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">LOGIN OR SIGN UP</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="">
<p class="text-center">
<a class="btn border btn-primary" data-bs-toggle="collapse" href="#log-in" role="button"
aria-expanded="false" aria-controls="collapseExample">
LOG IN
</a>
<span> OR </span>
<a class="btn border btn-primary" data-bs-toggle="collapse" href="#sign-up" role="button"
aria-expanded="false" aria-controls="collapseExample">
SIGN UP
</a>
</p>
<div class="collapse" id="log-in">
<div class="card card-body m-5">
<div id="form-login">
<div class="mb-3">
<label for="Input_Email" class="form-label">Email address</label>
<input type="email" class="form-control" id="Input_Email" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="InputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="InputPassword">
</div>
<button id="btn-login" class="btn btn-primary">SIGN IN</button>
</div>
</div>
</div>
<div class="collapse" id="sign-up">
<div class="card card-body m-5">
<div id="form-signup">
<div class="mb-3">
<label for="Input1" class="form-label">Enter Name</label>
<input type="text" class="form-control" id="Input1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your name with anyone else.</div>
</div>
<div class="mb-3">
<label for="city" class="form-label">Your city</label>
<input type="email" class="form-control" id="city" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="Input2" class="form-label">Email address</label>
<input type="email" class="form-control" id="Input2" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="InputP1" class="form-label">Password</label>
<input type="password" class="form-control" id="InputP1">
</div>
<div class="mb-3">
<label for="InputP2" class="form-label">Conform Password</label>
<input type="password" class="form-control" id="InputP2">
</div>
<button id="btn-signup" class="btn btn-primary">SIGN IN</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal for Address-->
<!-- <div class="modal fade" id="staticBackdrop1" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">Modal title</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<select name="" id="" style="width: 100%; height: 35px;">
<option value="">Select your city</option>
<option value="">Pune</option>
<option value="">Mumbai</option>
<option value="">Ahmednagar</option>
<option value="">Satara</option>
<option value="">Nashik</option>
</select>
<div class="input-group mb-3 my-3">
<input type="text" class="form-control" placeholder="Enter your area / apprtment / pincode" aria-label="Recipient's username" aria-describedby="basic-addon2">
</div>
<div class="d-grid gap-2 col-12 mx-auto">
<button class="btn btn-success" type="button">Continue</button>
</div>
</div>
</div>
</div>
</div> -->
</section>
<!-- Header-3 -->
<section>
<div class="container">
<div class="row">
<div class="col-lg-3 col-xl-3 col-md-3 col-sm-12">
<a href="index.html">
<img style="height: 70px; margin-top: -10px;" src="https://www.bbassets.com/static/v2530/custPage/build/content/img/bb_logo.png" alt=""
srcset="">
</a>
</div>
<div class="col-lg-7 col-xl-7 col-md-6 col-sm-12">
<input class="form-control w-75 mt-3" style="float: left;" type="text">
<button class="search-btn bg-success mt-3" style="height: 38px; width: 38px; border: 0;"><i class="bi bi-search"></i></button>
</div>
<div class="col-lg-2 col-xl-2 col-md-3 col-sm-12" data-bs-toggle="modal" data-bs-target="#staticBackdrop3">
<a href="cart.html">
<div class="cart-icon">
<div><i id="cart-img" class="bi bi-basket"></i></div>
<div id="cart-count"><span id="basket">My Basket</span><br><span id="item-count"> </span> items</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<!-- <hr id="menu-sepreter"> -->
<div class="row border">
<div class="col-lg-2 col-xl-2 col-md-3 col-sm-12 dropdown bg-success">
<div class="dropdown">
<button class="btn btn-success btn-sm dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
SHOP BY CATEGORY
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item" href="#" onclick="Fruits()">Fruits & Vegetables</a></li>
<li><a class="dropdown-item" href="#" onclick="Food()">Foodgrains, Oil & Masala</a></li>
<li><a class="dropdown-item" href="#" onclick="Bakery()">Bakery, Cakes & Dairy</a></li>
<li><a class="dropdown-item" href="#" onclick="Beverages()">Beverages</a></li>
<!-- <li><a class="dropdown-item" href="#" onclick="Snacks()">Snacks & Branded Foods</a></li> -->
<!-- <li><a class="dropdown-item" href="#" onclick="Beauty()">Beauty & Hygiene</a></li> -->
<li><a class="dropdown-item" href="#" onclick="Cleaning()">Cleaning & Household</a></li>
<li><a class="dropdown-item" href="#" onclick="Kitchen()">Kitchen, Garden & Pets</a></li>
<li><a class="dropdown-item" href="#" onclick="Eggs()">Eggs, Meat & Fish</a></li>
<li><a class="dropdown-item" href="#" onclick="Gourmet()">Gourmet & World Food</a></li>
<!-- <li><a class="dropdown-item" href="#" onclick="Baby()">Baby Care</a></li> -->
<!-- <li><a class="dropdown-item" href="#" onclick="F_V">View All</a></li> -->
</ul>
</div>
</div>
<div class="col-lg-2 col-xl-2 col-md-3 col-sm-12">
<b class="bi bi-tag-fill">OFFERS</b>
</div>
<div class="col-lg-2 col-xl-2 col-md-3 col-sm-12">
<b class="bi bi-shop"> BB SPECIALTY</b>
</div>
</div>
</div>
</section>
<!-- <hr> -->
<div id="bigcontainer">
<div id="left">
<h3 style="cursor: pointer; color: green; box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;">About bigbasket</h3>
<p id="side">- What is bigbasket.com </p>
<p id="side">- Why shop at bigbasket? </p>
<p id="side">- How to order </p>
<p id="side">- Where we operate</p>
<p>In the media</p>
<p>Customer Speak</p>
<p>Green bigbasket</p>
<p>Privacy Policy</p>
<p>Terms & Conditions</p>
<p>FAQ's</p>
<p>Contact Us</p>
<p>bigbasket blog</p>
</div>
<h5></h5>
<div id="smallcontainer">
<div id="box">
<div id="para">
<h3>What is bigbasket.com</h3>
<p>bigbasket.com (Innovative Retail Concepts Private Limited) is India’s largest online food and grocery store. With over 18,000 products and over a 1000 brands in our catalogue you will find everything you are looking for. Right from fresh Fruits and Vegetables, Rice and Dals, Spices and Seasonings to Packaged products, Beverages, Personal care products, Meats – we have it all.
Choose from a wide range of options in every category, exclusively handpicked to help you find the best quality available at the lowest prices. Select a time slot for delivery and your order will be delivered right to your doorstep, anywhere in Bangalore, Hyderabad, Mumbai, Pune, Chennai, Delhi, Noida, Mysore, Coimbatore, Vijayawada-Guntur, Kolkata, Ahmedabad-Gandhinagar, Lucknow-Kanpur, Gurgaon, Vadodara, Visakhapatnam, Surat, Nagpur, Patna, Indore and Chandigarh Tricity You can pay online using your debit / credit card or by cash / sodexo on delivery.
We guarantee on time delivery, and the best quality</p>
</div>
<div id="sideimg">
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/about_shopbag.jpg" alt="">
</div>
</div>
<h4>Happy Shopping</h4>
<div id="box">
<div id="para">
<h3>Why should I use bigbasket.com?</h3>
<p>bigbasket.com allows you to walk away from the drudgery of grocery shopping and welcome an easy relaxed way of browsing and shopping for groceries. Discover new products and shop for all your food and grocery needs from the comfort of your home or office. No more getting stuck in traffic jams, paying for parking, standing in long queues and carrying heavy bags – get everything you need, when you need, right at your doorstep. Food shopping online is now easy as every product on your monthly shopping list, is now available online at bigbasket.com, India’s best online grocery store.</p>
</div>
<div id="sideimg">
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/whybb.jpg" alt="">
</div>
</div>
<p style="text-align: right;"><a href="">GO TO TOP^</a></p>
<h4>How do I order?</h4>
<div id="box">
<div id="para">
<p>
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/about-how-order.jpg" alt="" style="float: left;margin-right: 9px;">Browse bigbasket.com for products <br>or use the search feature
</p>
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/about-lap1.jpg" alt="">
</div>
<div id="para">
<p>
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/about-baskt-icon.jpg" alt="" style="float: left;margin-right: 9px;">Add item to your<br>Shopping Basket
</p>
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/about-lap2.jpg" style="margin-left: 60px;" alt="">
</div>
</div>
<hr>
<div id="box">
<div id="para">
<p>
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/about-baskt-time.jpg" alt="" style="float: left;margin-right: 9px;">Choose a convenient delivery <br>time from our 4 Slots* a day
</p>
<ul class="timing" style="box-shadow: rgba(50, 50, 93, 0.25) 0px 10px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 10px 30px -18px inset;">
<u>Time slots</u>
<li>7.00AM - 9.30AM</li>
<li>9.30AM - 12.00PM</li>
<li>5.00PM - 7.30PM</li>
<li>7.30PM - 10.00PM</li>
</ul>
<p style="text-align: center;">*slot timings may vary accross cities</p>
</div>
<div id="para">
<p>
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/about-baskt-option.jpg" alt="" style="float: left;margin-right: 9px;">Select suitable payment<br>option(Cash, Sodexo, Credit Card)
</p>
<img src="./Screenshot (60).png" style="margin-left: 60px; height: 180px;" alt="">
</div>
</div>
<hr>
<div id="box">
<div id="para">
<p>
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/about-baskt-delivery.jpg" alt="" style="float: left;margin-right: 9px;">Your products will be home-delivered <br>as per your order.
</p>
<img src="https://www.bigbasket.com/media/uploads/flatpages/about-us/about-basket-vichl-8thDec.jpg" alt="">
</div>
</div>
<hr>
<p style="margin-left: 10px; ">Where do we operate</p>
<p style="margin-left: 10px;color: black; ">We currently offer our services in Bangalore, Hyderabad, Mumbai, Pune, Chennai, Delhi, Noida, Mysore, Coimbatore, Vijayawada-Guntur, Kolkata, Ahmedabad-Gandhinagar, Lucknow-Kanpur, Gurgaon, Vadodara, Visakhapatnam, Surat, Nagpur, Patna, Indore and Chandigarh Tricity city limits</p>
<hr>
</div>
</div>
</section>
<section>
<div class="container my-5">
<div class="container">
<div class="row">
<div class="col text_color">
Bigbasket<br>
<a href="aboutus.html">About Us</a><br>
<a href="aboutus.html">In News</a><br>
<a href="aboutus.html">Green bigbasket</a><br>
<a href="aboutus.html">Privacy Policy</a><br>
<a href="aboutus.html">Affiliate</a><br>
<a href="aboutus.html">Terms and Conditions</a><br>
<a href="aboutus.html">Careers At bigbasket</a><br>
<a href="aboutus.html">bb Instant</a><br>
<a href="aboutus.html">bb Daily</a><br>
<a href="aboutus.html">bb Blog</a><br>
<a href="aboutus.html">bbnow</a>
</div>
<div class="col text_color">
Help<br>
<a href="aboutus.html">FAQs</a><br>
<a href="aboutus.html">Contact Us</a><br>
<a href="aboutus.html">bb Wallet FAQs</a><br>
<a href="aboutus.html">bb Wallet T&Cs</a><br>
<a href="aboutus.html">Vendor Connect</a><br>
</div>
<div class="col text_color">
<p>Download Our App</p>
<img src="https://www.bbassets.com/static/v2530/custPage/build/content/img/Google-App-store-icon.png" alt="">
<img src="https://www.bbassets.com/static/v2530/custPage/build/content/img/Apple-App-store-icon.png" alt="">
</div>
<div class="col">
<p class="text_color">Get Social With Us</p>
<i class="bi bi-facebook Footer-1-icon"></i>
<i class="bi bi-instagram Footer-1-icon"></i>
<i class="bi bi-pinterest Footer-1-icon"></i>
<i class="bi bi-twitter Footer-1-icon"></i>
</div>
</div>
</div>
<hr>
</div>
</section>
<!-- Footer-2 -->
<section>
<div class="container my-5">
<div class="row">
<div class="col-2">
<p class="text_color">POPULAR CATEGORIES:</p>
</div>
<div class="col-10 text_small">
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,
</div>
</div>
<div class="row">
<div class="col-2">
<p class="text_color">POPULAR BRANDS:</p>
</div>
<div class="col-10 text_small">
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, </div>
</div>
<div class="row">
<div class="col-2">
<p class="text_color">CITIES WE SERVE:</p>
</div>
<div class="col-10 text_small">
Bangalore, Hyderabad, Mumbai, Pune, Chennai, Delhi, Mysore, Madurai, Coimbatore, Vijayawada-Guntur, Kolkata, Ahmedabad-Gandhinagar, Nashik, 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, Amaravathi, 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,
</div>
</div>
<div class="row">
<div class="col-2">
<p class="text_color">PAYMENT OPTIONS:</p>
</div>
<div class="col-10">
CASH ON DELIVERY
</div>
</div>
</div>
</section>
<!-- Footer-3 -->
<section class="bg-light">
<div class="container">
<div class="row">
<div class="col">
<small>
Copyright © 2021-2023 Supermarket Grocery Supplies Pvt Ltd
</small>
</div>
</div>
</div>
</section>
<!-- <h1>Hello, world!</h1> -->
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>