-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
515 lines (402 loc) · 18.3 KB
/
Copy pathindex.html
File metadata and controls
515 lines (402 loc) · 18.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
<!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">
<link rel="shortcut icon" href="image/favicon.png" type="images/x-icon">
<title>Grocart - Grocery Ecommerce Site</title>
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header section starts -->
<header class="header">
<a href="#" class="logo"> <i class="fas fa-shopping-basket"></i> grocart </a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#features">features</a>
<a href="#products">products</a>
<a href="#categories">categories</a>
<a href="#review">review</a>
<a href="#blogs">blogs</a>
</nav>
<div class="icons">
<div class="fas fa-bars" id="menu-btn"></div>
<div class="fas fa-search" id="search-btn"></div>
<div class="fas fa-shopping-cart" id="cart-btn"></div>
<div class="fas fa-user" id="login-btn"></div>
</div>
<form action="" class="search-form">
<input type="search" id="search-box" placeholder="search here...">
<label for="search-box" class="fas fa-search"></label>
</form>
<div class="shopping-cart">
<div class="box">
<i class="fas fa-trash"></i>
<img src="image/cart-img-1.png" alt="">
<div class="content">
<h3>watermelon</h3>
<span class="price">₹120/-</span>
<span class="quantity">qty : 1</span>
</div>
</div>
<div class="box">
<i class="fas fa-trash"></i>
<img src="image/cart-img-2.png" alt="">
<div class="content">
<h3>onion</h3>
<span class="price">₹94/-</span>
<span class="quantity">qty : 1</span>
</div>
</div>
<div class="box">
<i class="fas fa-trash"></i>
<img src="image/cart-img-3.png" alt="">
<div class="content">
<h3>chicken</h3>
<span class="price">₹29/-</span>
<span class="quantity">qty : 1</span>
</div>
</div>
<div class="total"> total : ₹569/- </div>
<a href="#" class="btn">checkout</a>
</div>
<form action="" class="login-form">
<h3>login now</h3>
<input type="email" placeholder="your email" class="box">
<input type="password" placeholder="your password" class="box">
<p>forget your password <a href="#">click here</a></p>
<p>don't have an account <a href="#">create now</a></p>
<input type="submit" value="login now" class="btn">
</form>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="content">
<h3>fresh and <span>organic</span> products for your</h3>
<p>In this world of contamination and adulteration you can hardly expect anything pure. You will be surprised to know that the most nutritious orange juice is actually non-vegetarian. Read to know these daily food items that are commonly found in every vegetarian household are actually non-vegetarian in nature.</p>
<a href="#" class="btn">shop now</a>
</div>
</section>
<!-- home section ends -->
<!-- features section starts -->
<section class="features" id="features">
<h1 class="heading"> our <span>features</span> </h1>
<div class="box-container">
<div class="box">
<img src="image/feature-img-1.png" alt="">
<h3>fresh and organic</h3>
<a href="#" class="btn">read more</a>
</div>
<div class="box">
<img src="image/feature-img-2.png" alt="">
<h3>free delivery</h3>
<a href="#" class="btn">read more</a>
</div>
<div class="box">
<img src="image/feature-img-3.png" alt="">
<h3>easy payments</h3>
<a href="#" class="btn">read more</a>
</div>
</div>
</section>
<!-- features section ends -->
<!-- products section starts -->
<section class="products" id="products">
<h1 class="heading"> our <span>products</span> </h1>
<div class="swiper product-slider">
<div class="swiper-wrapper">
<div class="swiper-slide box">
<img src="image/product-1.png" alt="">
<h3>fresh orange</h3>
<div class="price">3pieces(550g-650g)- ₹94/- </div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="swiper-slide box">
<img src="image/product-2.png" alt="">
<h3>fresh onion</h3>
<div class="price"> 1 kg- ₹29/- </div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="swiper-slide box">
<img src="image/blog.jpg" alt="">
<h3>Desi Tomato</h3>
<div class="price">500 g - ₹14/- </div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="swiper-slide box">
<img src="image/product-4.png" alt="">
<h3>fresh cabbage</h3>
<div class="price"> 1piece(400g-600g)- ₹22/- </div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
</div>
<div class="swiper product-slider">
<div class="swiper-wrapper">
<div class="swiper-slide box">
<img src="image/product-5.png" alt="">
<h3>fresh potato</h3>
<div class="price">500g - ₹9/- </div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="swiper-slide box">
<img src="image/product-6.png" alt="">
<h3>fresh avocado</h3>
<div class="price"> 1piece(150g-250g) - ₹349/- </div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="swiper-slide box">
<img src="image/product-7.png" alt="">
<h3>fresh carrot</h3>
<div class="price"> 500g - ₹20/- </div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="swiper-slide box">
<img src="image/product-8.png" alt="">
<h3>green lemon</h3>
<div class="price"> (250g-300g) - ₹57/- </div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
</div>
</section>
<!-- products section ends -->
<!-- categories section starts -->
<section class="categories" id="categories">
<h1 class="heading"> product <span>categories</span> </h1>
<div class="box-container">
<div class="box">
<img src="image/cat-1.png" alt="">
<h3>vegitables</h3>
<p>upto 45% off</p>
<a href="#" class="btn">shop now</a>
</div>
<div class="box">
<img src="image/cat-2.png" alt="">
<h3>fresh fruits</h3>
<p>upto 45% off</p>
<a href="#" class="btn">shop now</a>
</div>
<div class="box">
<img src="image/cat-3.png" alt="">
<h3>dairy products</h3>
<p>upto 45% off</p>
<a href="#" class="btn">shop now</a>
</div>
<div class="box">
<img src="image/suja.jpg" alt="">
<h3>fresh Juice</h3>
<p>upto 45% off</p>
<a href="#" class="btn">shop now</a>
</div>
</div>
</section>
<!-- categories section ends -->
<!-- review section starts -->
<section class="review" id="review">
<h1 class="heading"> customer's <span>review</span> </h1>
<div class="swiper review-slider">
<div class="swiper-wrapper">
<div class="swiper-slide box">
<img src="image/pic-1.png" alt="">
<p>The best way to get anybody's attention is dinner. I have good kitchen skills and good grocery shopping skills.I would not even let one of them handle my grocery shopping.</p>
<h3>Partha Dey</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="swiper-slide box">
<img src="image/pic-2.png" alt="">
<p>I love grocery shopping when I'm home.I may be only a fish and chip shop lady,but some of these economists need to get their heads out of the textbooks.</p>
<h3>Shamik GuhaRay</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="swiper-slide box">
<img src="image/pic-4.png" alt="">
<p>I'll go grocery shopping at the farmer's market on a Sunday and already know what I'm going to cook for the next two, three or four days.I think those two are probably my great interests</p>
<h3>Aishwarya Dey</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="swiper-slide box">
<img src="image/pic-3.png" alt="">
<p>It slows down grocery shopping, because so many women at the store watch the show. I always end up talking to two or three people every time I go.It's fun</p>
<h3>Tulika GuhaRoy</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- review section ends -->
<!-- blogs section starts -->
<section class="blogs" id="blogs">
<h1 class="heading"> our <span>blogs</span> </h1>
<div class="box-container">
<div class="box">
<img src="image/blog-1.jpg" alt="">
<div class="content">
<div class="icons">
<a href="#"> <i class="fas fa-user"></i> by user </a>
<a href="#"> <i class="fas fa-calendar"></i> 1st may, 2021 </a>
</div>
<h3>fresh and organic vegitables and fruits</h3>
<p>Fruits and vegetables are cultivated by the organic method, wherein plants and crops are raised and nourished without the use of any chemical throughout its pre-harvest to post harvest operations.</p>
<a href="#" class="btn">read more</a>
</div>
</div>
<div class="box">
<img src="image/blog-2.jpg" alt="">
<div class="content">
<div class="icons">
<a href="#"> <i class="fas fa-user"></i> by user </a>
<a href="#"> <i class="fas fa-calendar"></i> 1st may, 2021 </a>
</div>
<h3>fresh and organic vegitables and fruits</h3>
<p>Growing awareness regarding the benefits of organic products and its affordable prices and convenient availability are majorly influencing the growth of the organic fruits and vegetables market.</p>
<a href="#" class="btn">read more</a>
</div>
</div>
<div class="box">
<img src="image/blog-3.jpg" alt="">
<div class="content">
<div class="icons">
<a href="#"> <i class="fas fa-user"></i> by user </a>
<a href="#"> <i class="fas fa-calendar"></i> 1st may, 2021 </a>
</div>
<h3>fresh and organic vegitables and fruits</h3>
<p>Furthermore, Farmers are facing major problems on the farm such as malpractices for organic fertilizers and agro-chemicals which undoubtedly creates hurdles for the production of the organic fruits and vegetable. </p>
<a href="#" class="btn">read more</a>
</div>
</div>
</div>
</section>
<!-- blogs section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3> grocart <i class="fas fa-shopping-basket"></i> </h3>
<p>The OurGroceries® app is the simplest way to keep your grocery lists instantly synchronized on all the smartphones in your household—and it’s free!</p>
<p>Available for iPhone®, iPad®, iPod touch®, Siri, Apple Watch®, Android™, Wear OS, Amazon Alexa devices, and Google Assistant devices.</p>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin"></a>
</div>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#" class="links"> <i class="fas fa-phone"></i> +91-906268188 </a>
<a href="#" class="links"> <i class="fas fa-phone"></i> +91-9163693572 </a>
<a href="#" class="links"> <i class="fas fa-envelope"></i> parthokrdey@gmail.com </a>
<a href="#" class="links"> <i class="fas fa-map-marker-alt"></i> kolkata,west bengal, india - 700101 </a>
</div>
<div class="box">
<h3>quick links</h3>
<a href="#" class="links"> <i class="fas fa-arrow-right"></i> home </a>
<a href="#" class="links"> <i class="fas fa-arrow-right"></i> features </a>
<a href="#" class="links"> <i class="fas fa-arrow-right"></i> products </a>
<a href="#" class="links"> <i class="fas fa-arrow-right"></i> categories </a>
<a href="#" class="links"> <i class="fas fa-arrow-right"></i> review </a>
<a href="#" class="links"> <i class="fas fa-arrow-right"></i> blogs </a>
</div>
<div class="box">
<h3>newsletter</h3>
<p>subscribe for latest updates</p>
<input type="email" placeholder="your email" class="email">
<input type="submit" value="subscribe" class="btn">
<img src="image/payment.png" class="payment-img" alt="">
</div>
</div>
<div class="credit">© Copyright 2021 |<span> Partha Dey </span></div>
</section>
<!-- footer section ends -->
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="script.js"></script>
</body>
</html>