-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshopPage.html
584 lines (473 loc) · 24.9 KB
/
shopPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop Page</title>
<link rel="stylesheet" href="./CSS/ShopPage.css">
<!--=============== FAVICON ===============-->
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<!--=============== BOXICONS ===============-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<!--=============== SWIPER CSS ===============-->
<link rel="stylesheet" href="./CSS/swiper-bundler.min.css">
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">
<img src="./Images/ShopImages/download.png" alt="WW Logo">
</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="index.html" class="nav__link active-link">Home</a>
</li>
<li class="nav__item">
<a href="#featured" class="nav__link">Featured</a>
</li>
<li class="nav__item">
<a href="#products" class="nav__link">Products</a>
</li>
<li class="nav__item">
<a href="#new" class="nav__link">New</a>
</li>
</ul>
<div class="nav__close" id="nav-close">
<i class='bx bx-x' ></i>
</div>
</div>
<div class="nav__btns">
<!-- Theme change button -->
<i class='bx bx-moon change-theme' id="theme-button"></i>
<div class="nav__shop" id="cart-shop">
<i class='bx bx-shopping-bag' ></i>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-grid-alt' ></i>
</div>
</div>
</nav>
</header>
<!--==================== CART ====================-->
<div class="cart" id="cart">
<i class='bx bx-x cart__close' id="cart-close"></i>
<h2 class="cart__title-center">My Cart</h2>
<div class="cart__container">
<article class="cart__card">
<div class="cart__box">
<img src="assets/img/featured1.png" alt="" class="cart__img">
</div>
<div class="cart__details">
<h3 class="cart__title">What's Up Gluta-Glow Gummies</h3>
<span class="cart__price">Rs. 899</span>
<div class="cart__amount">
<div class="cart__amount-content">
<span class="cart__amount-box">
<i class='bx bx-minus' ></i>
</span>
<span class="cart__amount-number">1</span>
<span class="cart__amount-box">
<i class='bx bx-plus' ></i>
</span>
</div>
<i class='bx bx-trash-alt cart__amount-trash' ></i>
</div>
</div>
</article>
<article class="cart__card">
<div class="cart__box">
<img src="assets/img/featured3.png" alt="" class="cart__img">
</div>
<div class="cart__details">
<h3 class="cart__title">whats-up-sleep-gummies</h3>
<span class="cart__price">Rs. 899</span>
<div class="cart__amount">
<div class="cart__amount-content">
<span class="cart__amount-box">
<i class='bx bx-minus' ></i>
</span>
<span class="cart__amount-number">1</span>
<span class="cart__amount-box">
<i class='bx bx-plus' ></i>
</span>
</div>
<i class='bx bx-trash-alt cart__amount-trash' ></i>
</div>
</div>
</article>
<article class="cart__card">
<div class="cart__box">
<img src="assets/img/new1.png" alt="" class="cart__img">
</div>
<div class="cart__details">
<h3 class="cart__title">whats-up-gut-health-gummies</h3>
<span class="cart__price">Rs.899</span>
<div class="cart__amount">
<div class="cart__amount-content">
<span class="cart__amount-box">
<i class='bx bx-minus' ></i>
</span>
<span class="cart__amount-number">1</span>
<span class="cart__amount-box">
<i class='bx bx-plus' ></i>
</span>
</div>
<i class='bx bx-trash-alt cart__amount-trash' ></i>
</div>
</div>
</article>
</div>
<div class="cart__prices">
<span class="cart__prices-item">3 items</span>
<span class="cart__prices-total">Rs. 2697</span>
</div>
</div>
<!--==================== MAIN ====================-->
<main class="main">
<!--==================== HOME ====================-->
<section class="home" id="home">
<div class="home__container container grid">
<div class="home__img-bg">
<img src="./Images/ShopImages/Gluta-Glow.webp" alt="" class="home__img">
</div>
<div class="home__social">
<a href="https://www.facebook.com/whatsupwellness.in" target="_blank" class="home__social-link">
Facebook
</a>
<a href="https://twitter.com/wuw_in" target="_blank" class="home__social-link">
Twitter
</a>
<a href="https://www.instagram.com/whatsupwellness.in/" target="_blank" class="home__social-link">
Instagram
</a>
</div>
<div class="home__data">
<h1 class="home__title">Whats Up <br>Gluta-Glow Gummies </h1>
<p class="home__description">
Latest arrival of the new imported watches of the B720 series,
with a modern and resistant design.
</p>
<span class="home__price">Rs. 899</span>
<div class="home__btns">
<a href="#" class="button button--gray button--small">
Discover
</a>
<button class="button home__button">ADD TO CART</button>
</div>
</div>
</div>
</section>
<!--==================== FEATURED ====================-->
<section class="featured section container" id="featured">
<h2 class="section__title">
Featured
</h2>
<div class="featured__container grid">
<article class="featured__card">
<span class="featured__tag">Sale</span>
<img src="./Images/ShopImages/Beauty-Gummies.webp" alt="" class="featured__img">
<div class="featured__data">
<h3 class="featured__title">WhatsUp Beauty Gummies</h3>
<span class="featured__price">Rs. 899</span>
</div>
<button class="button featured__button">ADD TO CART</button>
</article>
<article class="featured__card">
<span class="featured__tag">Sale</span>
<img src="./Images/ShopImages/Gut-Health.webp" alt="" class="featured__img">
<div class="featured__data">
<h3 class="featured__title">WhatsUp Gut Health Gummies</h3>
<span class="featured__price">$250</span>
</div>
<button class="button featured__button">ADD TO CART</button>
</article>
<article class="featured__card">
<span class="featured__tag">Sale</span>
<img src="./Images/ShopImages/Stress-Gummies.webp" alt="" class="featured__img">
<div class="featured__data">
<h3 class="featured__title">WhatsUp Stress Gummies</h3>
<span class="featured__price">Rs. 899</span>
</div>
<button class="button featured__button">ADD TO CART</button>
</article>
</div>
</section>
<!--==================== STORY ====================-->
<section class="story section container">
<div class="story__container grid">
<div class="story__data">
<h2 class="section__title story__section-title">
Our Campaigns
</h2>
<h1 class="story__title">
We are Championing <br> Plastic Neutrality
</h1>
<p class="story__description">
With the ardent Support Of <b>The Plastic Company.</b> We are Funding The recovery of the amount of Plastic Generated by us.
</p>
<a href="#" class="button button--small">Discover</a>
</div>
<div class="story__images">
<img src="./Images/ShopImages/plastic.jpg" alt="" class="story__img">
<div class="story__square"></div>
</div>
</div>
</section>
<!--==================== PRODUCTS ====================-->
<section class="products section container" id="products">
<h2 class="section__title">
Our Products
</h2>
<div class="products__container grid">
<article class="products__card">
<img src="./Images/ShopImages/Gluta-Glow.webp" alt="" class="products__img">
<h3 class="products__title">WhatsUp Gluta-Glow Gummies</h3>
<span class="products__price">Rs.899</span>
<button class="products__button">
<i class='bx bx-shopping-bag'><a href="https://whatsupwellness.in/products/whats-up-gluta-gummies"></a></i>
</button>
</article>
<article class="products__card">
<img src="./Images/ShopImages/Beauty-Gummies.webp" alt="" class="products__img">
<h3 class="products__title">WhatsUp Beauty Gummies</h3>
<span class="products__price">Rs.899</span>
<button class="products__button">
<i class='bx bx-shopping-bag'><a href="https://whatsupwellness.in/products/gummies-for-hair-skin-and-nails"></a></i>
</button>
</article>
<article class="products__card">
<img src="./Images/ShopImages/Gut-Health.webp" alt="" class="products__img">
<h3 class="products__title">WhatsUp Gut Health Gummies</h3>
<span class="products__price">Rs.899</span>
<button class="products__button">
<i class='bx bx-shopping-bag'><a href="https://whatsupwellness.in/products/whats-up-gut-health-gummies"></a></i>
</button>
</article>
<article class="products__card">
<img src="./Images/ShopImages/Sleep-Gummies.webp" alt="" class="products__img">
<h3 class="products__title">WhatsUp Sleep Gummies</h3>
<span class="products__price">Rs.899</span>
<button class="products__button">
<i class='bx bx-shopping-bag'><a href="https://whatsupwellness.in/products/whats-up-sleep-gummies"></a></i>
</button>
</article>
<article class="products__card">
<img src="./Images/ShopImages/Kids-Gummies.webp" alt="" class="products__img">
<h3 class="products__title">WhatsUp Kids Gummies</h3>
<span class="products__price">Rs.899</span>
<button class="products__button">
<i class='bx bx-shopping-bag'></i>
</button>
</article>
</div>
</section>
<!--==================== TESTIMONIAL ====================-->
<section class="testimonial section container">
<h1 class="testimonial-heading">Hear what the doctors say About us</h1>
<div class="testimonial__container grid">
<div class="swiper testimonial-swiper">
<div class="swiper-wrapper">
<div class="testimonial__card swiper-slide">
<div class="testimonial__quote">
<i class='bx bxs-quote-alt-left' ></i>
</div>
<p class="testimonial__description">
Nourishing our skin, hair and nail is as important as the rest of body and this product here just does the job. It provides an all around balanced pick of all the vital nutritional requirements.
</p>
<h3 class="testimonial__date">March 21. 2023</h3>
<div class="testimonial__perfil">
<img src="./Images/ShopImages/dr_roshni.webp" alt="" class="testimonial__perfil-img">
<div class="testimonial__perfil-data">
<span class="testimonial__perfil-name">Dr. Roshni Singh</span>
<span class="testimonial__perfil-detail">Dermatologist</span>
</div>
</div>
</div>
<div class="testimonial__card swiper-slide">
<div class="testimonial__quote">
<i class='bx bxs-quote-alt-left' ></i>
</div>
<p class="testimonial__description">
These amazing gummies work from inside and deliver the right nutrients to maintain a youthful glow. The vegan treats are taking care of my hair too and I have started seeing positive changes in 28 days!
</p>
<h3 class="testimonial__date">December 12. 2021</h3>
<div class="testimonial__perfil">
<img src="./Images/ShopImages/dr_shveta.webp" alt="" class="testimonial__perfil-img">
<div class="testimonial__perfil-data">
<span class="testimonial__perfil-name">Shveta Mahajan</span>
<span class="testimonial__perfil-detail">Nutritionist</span>
</div>
</div>
</div>
<div class="testimonial__card swiper-slide">
<div class="testimonial__quote">
<i class='bx bxs-quote-alt-left' ></i>
</div>
<p class="testimonial__description">
A tasty combination of Vitamin C, D and E with Aloe Vera extract packed in a gummy for healthy-looking hair, nails and skin. Helping in collagen production and preventing free radical and environmental damage to the skin, hair and nails.
</p>
<h3 class="testimonial__date">July 4. 2022</h3>
<div class="testimonial__perfil">
<img src="./Images/ShopImages/dr_sanjana.webp" alt="" class="testimonial__perfil-img">
<div class="testimonial__perfil-data">
<span class="testimonial__perfil-name">Dr. Sanjana Jain</span>
<span class="testimonial__perfil-detail">General Physician</span>
</div>
</div>
</div>
</div>
<div class="swiper-button-next">
<i class='bx bx-right-arrow-alt' ></i>
</div>
<div class="swiper-button-prev">
<i class='bx bx-left-arrow-alt' ></i>
</div>
</div>
<div class="testimonial__images">
<div class="testimonial__square"></div>
<img src="./Images/ShopImages/testimonial.png" alt="" class="testimonial__img">
</div>
</div>
</section>
<!--==================== NEW ====================-->
<section class="new section container" id="new">
<h2 class="section__title">
New Arrivals
</h2>
<div class="new__container">
<div class="swiper new-swiper">
<div class="swiper-wrapper">
<article class="new__card swiper-slide">
<span class="new__tag">New</span>
<img src="./Images/ShopImages/Gluta-Glow.webp" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">WhatsUp Gluta-Glow Gummies</h3>
<span class="new__price">Rs.899</span>
</div>
<button class="button new__button">ADD TO CART</button>
</article>
<article class="new__card swiper-slide">
<span class="new__tag">New</span>
<img src="./Images/ShopImages/Beauty-Gummies.webp" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">WhatsUp Beauty Gummies</h3>
<span class="new__price">Rs.899</span>
</div>
<button class="button new__button">ADD TO CART</button>
</article>
<article class="new__card swiper-slide">
<span class="new__tag">New</span>
<img src="./Images/ShopImages/Gut-Health.webp" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">WhatsUp Gut Health Gummies</h3>
<span class="new__price">Rs.899</span>
</div>
<button class="button new__button">ADD TO CART</button>
</article>
<article class="new__card swiper-slide">
<span class="new__tag">New</span>
<img src="./Images/ShopImages/Sleep-Gummies.webp" alt="" class="new__img">
<div class="new__data">
<h3 class="new__title">WhatsUp Sleep Gummies</h3>
<span class="new__price">Rs.899</span>
</div>
<button class="button new__button">ADD TO CART</button>
</article>
</div>
</div>
</div>
</section>
<!--==================== NEWSLETTER ====================-->
<section class="newsletter section container">
<div class="newsletter__bg grid">
<div>
<h2 class="newsletter__title">Subscribe Our <br> Newsletter</h2>
<p class="newsletter__description">
Don't miss out on your discounts. Subscribe to our email
newsletter to get the best offers, discounts, coupons,
gifts and much more.
</p>
</div>
<form action="" class="newsletter__subscribe">
<input type="email" placeholder="Enter your email" class="newsletter__input">
<button class="button">
SUBSCRIBE
</button>
</form>
</div>
</section>
</main>
<!--==================== FOOTER ====================-->
<footer class="footer section">
<div class="footer__container container grid">
<div class="footer__content">
<h3 class="footer__title">Our information</h3>
<ul class="footer__list">
<li>Wellness Ville Private Limited, Second Floor, Supremeworks</li>
<li>ILD Trade Centre, Sector 47, Gurugram - 122018</li>
<li>+91-7003492827</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">About Us</h3>
<ul class="footer__links">
<li>
<a href="https://whatsupwellness.in/pages/privacy-policy" class="footer__link">Privacy Policy</a>
</li>
<li>
<a href="https://whatsupwellness.in/pages/terms-of-use" class="footer__link">Terms of Use</a>
</li>
<li>
<a href="https://whatsupwellness.in/policies/terms-of-service" class="footer__link">Terms of Service</a>
</li>
<li>
<a href="https://whatsupwellness.in/pages/about-us" class="footer__link">About Us</a>
</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Product</h3>
<ul class="footer__links">
<li>
<a href="https://whatsupwellness.in/pages/track-order" class="footer__link">Track Order</a>
</li>
<li>
<a href="https://whatsupwellness.in/pages/shipping-delivery" class="footer__link">Shipping & Delivery</a>
</li>
<li>
<a href="https://whatsupwellness.in/blogs/news" class="footer__link">Blog</a>
</li>
<li>
<a href="https://whatsupwellness.in/pages/contact-us" class="footer__link">Contact US</a>
</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Social</h3>
<ul class="footer__social">
<a href="https://www.facebook.com/whatsupwellness.in" target="_blank" class="footer__social-link">
<i class='bx bxl-facebook'></i>
</a>
<a href="https://twitter.com/wuw_in" target="_blank" class="footer__social-link">
<i class='bx bxl-twitter' ></i>
</a>
<a href="https://www.instagram.com/whatsupwellness.in/" target="_blank" class="footer__social-link">
<i class='bx bxl-instagram' ></i>
</a>
</ul>
</div>
</div>
<span class="footer__copy">© WhatsUp Wellness. All rigths reserved</span>
</footer>
<!--=============== SCROLL UP ===============-->
<a href="#" class="scrollup" id="scroll-up">
<i class='bx bx-up-arrow-alt scrollup__icon' ></i>
</a>
<!--=============== SWIPER JS ===============-->
<script src="./js/swiper-bundler.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="./js/main.js"></script>
</body>
</html>