-
Notifications
You must be signed in to change notification settings - Fork 2
/
product.html
454 lines (410 loc) · 29.6 KB
/
product.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
<!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">
<title>Document</title>
<link rel="stylesheet" href="styles\product.css">
<link rel="stylesheet" href="styles\footer.css">
<link rel="stylesheet" href="styles\navbar.css">
</head>
<body>
<header>
<section class="header">
<div class="headerLeft">
<div class="logoContainer">
<a href="index.html"><img src="./images/HomePage/NavBar/logo.png" /></a>
</div>
<!--Search Box-->
<div class="searchInputContainer">
<div class="searchIcon">
<img src="./images/HomePage/NavBar/search.png" />
</div>
<form action="" id="inputForm">
<input
type="text"
placeholder="Try Saree, Kurti or Search by Product Code"
class="inputSearch"
/>
</form>
<div class="inputCloseSearch">
<i class="fa-solid fa-xmark" id="closeSearch"></i>
</div>
<div class="searchRecentProduct">
<h3>Recent Searches</h3>
<div class="listofRecent"></div>
</div>
</div>
</div>
<div class="headerRight">
<div class="downloadContainer">
<div class="mobileIcon">
<img src="./images/HomePage/NavBar/mobile.png" />
</div>
<p>Download App</p>
<div class="downloadHoverBtnContainer">
<h3>Download From</h3>
<a href="" class="downloadBtn">
<img
src="https://images.meesho.com/images/pow/playstore-icon-big.webp"
/>
</a>
<a href="" class="downloadBtn">
<img
src="https://images.meesho.com/images/pow/appstore-icon-big.webp"
/>
</a>
</div>
</div>
<div class="becomeSupplierContainer">
<p>Become a Supplier</p>
</div>
<div class="profileAndCart">
<div class="profileContainer">
<div class="profileIcon">
<img src="./images/HomePage/NavBar/profile.png"/>
</div>
<!-- Drop Down Sigin/SignUp -->
<div class="dropdown">
<p id="icon-style">Profile</p>
<div class="dropdown-options">
<h4>Hello User</h4>
<p>To access your Meesho account</p>
<a href="/signup.html"><button class="sign-up"> Sign Up</button></a>
<hr>
<div class="orderIcon">
<img src="./images/HomePage/NavBar/orders.png">
<a href="#">My Orders</a>
</div>
</div>
</div>
</div>
<div class="CartContainer">
<div class="CartIcon">
<img src="./images/HomePage/NavBar/cart.png" />
</div>
<p id="icon-style">Cart</p>
</div>
</div>
</div>
</section>
<!--Drop-Down Menu-->
<nav >
<ul >
<li>
Women Ethnic
<div class="subMenu">
<div id="womenEthic" class="submenuList"></div>
</div>
</li>
<li>
Women Western
<div class="subMenu">
<div id="womenWestern" class="submenuList"></div>
</div>
</li>
<li>
Men
<div class="subMenu">
<div id="men" class="submenuList"></div>
</div>
</li>
<li>
Kids
<div class="subMenu">
<div id="kids" class="submenuList"></div>
</div>
</li>
<li>
Home & Kitchen
<div class="subMenu">
<div id="HomeAndKitchen" class="submenuList"></div>
</div>
</li>
<li>
Beauty & Health
<div class="subMenu">
<div id="beautyAndHealth" class="submenuList"></div>
</div>
</li>
<li>
Jewellery & Accessories
<div class="subMenu">
<div id="JewelleryAndAccessories" class="submenuList"></div>
</div>
</li>
<li>
Bags & Footwear
<div class="subMenu">
<div id="BagsFootWarId" class="submenuList"></div>
</div>
</li>
<li>
Electronics
<div class="subMenu">
<div id="ElectronicsId" class="submenuList"></div>
</div>
</li>
</ul>
</nav>
</header>
<main>
<div id="top_div">
<div id="photo">
<div id="subimg"><img id="item_img" src="https://images.meesho.com/images/products/208778943/y6rwj_512.webp" alt="">
<!-- append image -->
</div>
<div id="btns">
<button id = "cartBtn">
<b>Add to Cart</b>
</button>
<button id="btn"> Buy Now </button>
</div>
<hr>
</div>
<div id="details">
<div id="product">
<!-- append selected product details -->
</div>
<div id="size">
<h3>Select Size</h3>
<div id="btnsize">
<button>S</button>
<button>M</button>
<button>L</button>
<button>XL</button>
<button>XXL</button>
</div>
</div>
<div id="three">
<h3>Product Details</h3>
<div id="subproduct">
<!-- append data here -->
</div>
</div>
<div id="four">
<h3>Sold By</h3>
<div id="sold">
<img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/RD84QzQ5Ojf/2wBDAQoKCg0MDRoPDxo3JR8lNzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzf/wAARCABAAD4DASIAAhEBAxEB/8QAGwABAAMBAQEBAAAAAAAAAAAAAwABAgUEBgf/xAAsEAACAgECAwcDBQAAAAAAAAABAgADEQQSBSFhEzFBUXGBkSJSsRQyYsHx/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAECAwT/xAAeEQADAQEAAQUAAAAAAAAAAAAAAQIRAxIhUaHB8P/aAAwDAQACEQMRAD8A/cZROJCcCEzcyPkxpaBov1z6TG7oJUkrETprd0Htymlfr7GHJDEGjg5lwkb5/MXvkFGHOPaFEs8fUQ5Uks8mv1T0CmuhFe++zYgckKORJJx4ACHni326H5eBxxNRW9Wq09iKQOw+rP0GxlXeOong/U6qrVVVHiKltMzIN9T7biASd7YxkAeE6457Caz5/exlVY8Z1s8W8F0J93j6DUjWaRLtu0nIZftYHBHsQZwKrtbbS1VfE2LAHUh3odGbA5qMjBTJHjnE7HBq7F0putKA6lu32Jnam4A4Gfn1MXWPGfX7HNaz3g4OYyHlBi1/0Jy0aojjv9IUdhkdYLDB6Qlgzw8Xqst0eKULuttb7QQCQrhiBnxwJyXr1djAPwzUlDq7LmG5OaMhXH7u/nPo5JvHZwswzqNenz61W1qxXRcStsFLVV9tZWQoIH8ugna0dbVaPT1PjclSqceYAEaSK+jpZg5nCRkGPxDQHv8AiKBgYmNMtFzJXPdNSSRglf8ADK2nyMeVtHlj0j8hYDtPkZpU94m0eXzLhoYUBj1lySRDP//Z" alt="">
<h2>M S ENTERPRISES</h2>
</div>
</div>
<div id="five">
<p id="rr"><b>Product Ratings & Reviews</b></p>
<div id="colors">
<p id="dot">159 Rating,<br>25 Reviews</p>
<div class="row">
<div class="side">
<div>5 Star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-5"></div>
</div>
</div>
<div class="side right">
<div>150</div>
</div>
<div class="side">
<div>4 Star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-4"></div>
</div>
</div>
<div class="side right">
<div>63</div>
</div>
<div class="side">
<div>3 Star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-3"></div>
</div>
</div>
<div class="side right">
<div>50</div>
</div>
<div class="side">
<div>2 Star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-2"></div>
</div>
</div>
<div class="side right">
<div>15</div>
</div>
<div class="side">
<div>1 Star</div>
</div>
<div class="middle">
<div class="bar-container">
<div class="bar-1"></div>
</div>
</div>
<div class="side right">
<div>10</div>
</div>
</div>
</div>
</div>
<div id="six">
<div>
<img src="https://images.meesho.com/images/value_props/lowest_price_pbd.png" alt="">
<p>Lowest Price</p>
</div>
<div>
<img src="https://images.meesho.com/images/value_props/cash_on_delivery_pbd.png" alt="">
<p>Cash on Delivery</p>
</div>
<div>
<img src="https://images.meesho.com/images/value_props/7_day_returns_pbd.png" alt="">
<p>7-day Return</p>
</div>
</div>
<div id="seven">
<p>Best quality products from trusted suppliers</p>
</div>
</div>
</div>
<h2 id="people">People also viewed</h2>
<div id="bottom">
<!-- append women data -->
</div>
<footer>
<div class="footer_main">
<div id="downloads">
<h1>Shop Non-Stop on Meesho</h1>
<p>Trusted by more than 1 Crore Indians </p>
<p>Cash on Delivery | Free Delivery </p>
<div id="footer_imgs">
<div>
<img src="https://images.meesho.com/images/pow/playstore-icon-big.png" alt="">
</div>
<div>
<img src="https://images.meesho.com/images/pow/appstore-icon-big.png" alt="">
</div>
</div>
</div>
<div id="carees">
<div>
<p>Careers</p>
<p>Become a supplier</p>
<p>Hall of Fame</p>
</div>
<div>
<p>Legal and Policies</p>
<p>Meesho Tech Blog</p>
<p>Notices and Returns</p>
</div>
</div>
<div id="contact">
<div>
<h3>Reach out to us</h3>
<div id="logos_imgs">
<div><img width="100%" src="https://images.meesho.com/images/pow/facebook.png" alt=""></div>
<div><img width="100%" src="https://images.meesho.com/images/pow/instagram.png" alt=""></div>
<div><img width="100%" src="https://images.meesho.com/images/pow/youtube.png" alt=""></div>
<div><img width="100%" src="https://images.meesho.com/images/pow/linkedin.png" alt=""></div>
<div><img width="100%" src="https://images.meesho.com/images/pow/twitter.png" alt=""></div>
</div>
</div>
<div id="font_text">
<h3>Contact Us</h3>
<p>Fashnear Technologies Private Limited,CIN:U74900KA2015PTC082263
06-105-B, 06-102, (138 Wu) Vaishnavi Signature, No. 78/9, Outer Ring Road, Bellandur, Varthur Hobli, Bengaluru-560103,Karnataka, India
E-mail address: query@meesho.com
© 2015-2022 Meesho.com</p>
</div>
</div>
</div>
<div id="shadow">
<div>
<h3>More About Meesho</h3><hr>
<h3><b>Meesho: Affordable Online Shopping at Your Fingertips</b></h3>
<p>There are many benefits of shopping online. You can take your time and look at different options to find exactly what you want. It's easy to compare prices online and find exactly what you are looking for. And now with Meesho, you can shop for anything you want at the lowest prices in the market. Even if you want to shop for cool gifts for your friends and family, there are many options that you can find on the Internet. </p>
<h3>A Huge Selection of Products Across All Categories</h3>
<p>We have a vast inventory of products ranging from apparel to cosmetics to home utility and kitchen products and more. With over 50 lakh products and 650+ product categories, Meesho is sure to have everything you need. In our latest collections, you will find all the popular items at an affordable price, so you can be confident you're getting the best deal. Whether you're in the market for new clothes, accessories, or just some daily-use items for home, Meesho has what you need.</p>
<h3>Latest Women's Fashion Is Right Here</h3>
<h3>Women’s Ethnic Wear Collection</h3>
<p>When it comes to <span style="color: #f980ab;">women's ethnic wear</span>, we have everything you need to find the perfect outfit for any occasion. Whether you're looking for traditional sarees and blouses, or something more modern like suits or casual <span style="color: #f980ab;">Kurtis</span>, we have it all. And with our stunning collection of accessories, footwear, and <span style="color: #f980ab;">jewellery sets</span>, it's easy to put together a complete look that will turn heads at your next wedding or festive celebration. So come and shop with us today!</p>
<h3>Western Wear for Women</h3>
<p>Meesho is the best place to find fashionable and affordable western wear for women. With a constantly updating inventory of casual, formal, and partywear dresses, jeans, tops, <span style="color: #f980ab;">T-shirts</span>, skirts, and more, Meesho has all the latest trending outfits you're looking for--plus funky jewelry and accessories. You'll never have to worry about overspending or not being able to find something you love!</p>
<h3>Accessories, Jewellery, and Footwear</h3>
<p>You may have your favorite outfit picked out but accessories can really add a sense of style and individuality that make you stand out! With so many types of accessories available, it can be difficult to find the perfect piece for yourself. Fortunately, Meesho has a wide variety of jewellery sets, <span style="color: #f980ab;">handbags</span>, belts, heels, casual footwear, <span style="color: #f980ab;">watches</span>, etc. With so many options, you'll be sure to find the perfect accessories for any outfit!</p>
<h3>Men's Ethnic Wear</h3>
<p>Do you need a new Sherwani? Are you heading to a wedding and want to look your best? If you answered yes, look no further than our latest men’s ethnic wear collection! Whether you want a Kurta set, Pajamas, Sherwani set, or any other Indian attire, we have an array of budget-friendly styles that are sure to fit your needs.</p>
<h3>Largest Collection of Menswear and Accessories </h3>
<h3>Men’s Western Wear</h3>
<p>Through our large selection of menswear products we offer, you’re sure to find something you love. We have a vast collection of t-shirts, jeans, polos, coats, and shirts. We have sizes in stock that fit any man’s body type, and the best news of all is that they’re all affordable. We make it easy to find exactly what you’re looking for, too. Our search tool lets you filter our selection down by size, color, material, and more. </p>
<h3>Ethnic Wear for Men</h3>
<p>If you're on the hunt for a new sherwani or any other type of Indian attire for an upcoming wedding, our latest men's ethnic wear collection has got you covered. We have a range of budget-friendly styles to choose from, so you're sure to find something that fits your needs. Whether you're looking for a Sherwani set, Kurta pajamas, or an ethnic jacket, we've got it all!</p>
<h3>Men’s Accessories and Footwear</h3>
<p>When it comes to fashion, no one knows how to help you gain the upper hand in style better than us. Shop our online collection of accessories for men and pick out something for yourself or for your other half! Our accessories collection includes items like men's wallets, cufflinks, bags for men, and more. So don't waste another minute and get yourself some accessories today! Do not forget to check out our latest footwear for men. We have everything from colorful sneakers to formal footwear to flip-flops for men.</p>
<h3>Affordable and Top Quality Beauty Products</h3>
<p>With so many different cosmetics brands, products, and items to choose from, it can be overwhelming when trying to find the right makeup for you. Sometimes it's nice to try out new products, but if you buy bad quality makeup that breaks you out, it's not very cost-effective. We are only concerned with the best products. We only stock up on the best <span style="color: #f980ab;">makeup </span>and skincare that won't damage your skin or make you break out. We have everything from foundations, makeup removers, concealers to primer, mascara, eye shadow, and lipsticks.</p>
<h3>Cute and Trendy Kidswear Collection</h3>
<p>Kids grow so fast, it feels like you're constantly buying new clothes for them! Whether you're looking for the latest trends or just want something practical and affordable, our kidswear collection has got you covered. You'll find everything from rompers and dresses for girls to sets and jeans for boys. Plus, we have ethnic wear and accessories for kids of all ages. And don't forget to check out our baby care collection for all the basic products for <span style="color: #f980ab;">baby care</span>.</p>
<h3>Shop Home & Kitchen Products, Electronics, and More</h3>
<h3>Kitchen Products</h3>
<p>If you're looking to spice up your kitchen, then you've come to the right place! We carry a wide variety of home and kitchen essentials like cooking utensils and serveware,<span style="color: #f980ab;"> kitchen storag</span>e, appliances like blenders, choppers, cooktops, and more! We are dedicated to providing the highest quality products for a reasonable price. We're confident that we have everything you're looking for in your kitchen or home!</p>
<h3>Home Utility and Essentials</h3>
<p>It's always a good idea to switch up your home's style every now and then - it keeps things fresh and also allows you to try out new trends. But of course, you never want to spend more money than you have to. That's where Meesho comes in! We've got amazing prices on all kinds of home furnishing items like <span style="color: #f980ab;">bedsheets, curtains, cushions</span>, and more. Plus, we have a constantly rotating selection of the best home decor items so you can always stay on top of the latest trends. So be sure to check out our home decor section today! </p>
<h3>Electronics and Accessories</h3>
<p>At Meesho, we give you access to a huge selection of gadgets and essentials for your <span style="color: #f980ab;">electronic </span>devices. Here you'll find everything from chargers and headphones to data cables and even external battery packs. Every month, we offer different sales and discounts on products, allowing you to save on your favorite essentials. Here you can find the perfect gift for everyone on your list without breaking your budget!</p>
<h3>Health, Fitness & Sports</h3>
<p>We know how important it is to take care of your health and keep yourself fit. We have everything you need to start your journey towards fitness. At our store, you will find a wide variety of fitness equipment at very affordable prices. We have everything you need to get started with your home workouts, including dumbbell sets, exercise bands, exercise mats, skipping ropes, sports kits and more!</p>
<h3>Office Supplies and Stationery </h3>
<p>We have a wide range of stationery items which will help you stay tidy and organised. You can buy notebooks, diaries and notepads and craft supplies which are great for school and college, or you can buy office supplies which are great for adults. We have a variety of pens, pencils, and other stationery supplies to ensure that you have what you need to write down your thoughts, make lists and so much more.</p>
<h3>Get the Meesho App for Hassle Free Online Shopping </h3>
<p>If you want a seamless shopping experience, you should also consider downloading Meesho’s App. While you may think that it's unnecessary to have an app for shopping, there are plenty of features that will make your life easier. If you find yourself preferring to shop from home, this is the app for you. It makes shopping online easier than ever. You can browse through a plethora of products and even get great deals with more discounts than you can count. You can even share products you like with your friends on social media in just seconds. </p>
<h3 style="color: #f980ab;">Download Meesho App Now</h3>
<h3>Become a Reseller: Start Making Money In Three Simple Steps</h3>
<p>Now you know all about different categories and products Meesho has to offer. It's time to explore and understand Meesho’s reselling option. Apart from using Meesho as an online shopping platform, you also have the option to start your online business with us. Here’s how you can begin your entrepreneurial journey.
Browse: You can register for a new account or log in to an existing one on the Meesho app or website. Once you're logged in, you can browse through our catalog and select products that you want to purchase at wholesale rates!
Share: With a single click, you can share catalogs and product images over Whatsapp, Facebook, or Instagram to your contacts using the share option.
Earn: After sharing the products and catalogs with your customers, you will start getting orders from them. You can add a profit margin to Meesho’s prices and quote that to your customers.This will be your profit. You can quote product prices with an added margin, which will include a profit for you. Once you place the orders on your customer’s behalf, Meesho will take care of the delivery process for you. </p>
<h3>Don't Miss Out! Start Shopping Online on Meesho Now</h3>
<p>Meesho offers multiple payment options including debit and credit cards, UPI, and COD to help you with a smooth checkout process. If you are unhappy with any of the products you order you can immediately return them and get a full refund with no questions asked. In case you have any queries or concerns, simply send us an email at query@meesho.com. Or you can contact us on social media through Facebook, Instagram, or Twitter. We're here to help you!</p>
<h3 style="color: #f980ab;">Online Shopping</h3>
<h4>Home & Living</h4>
<p><span > Curtains & Sheers </span>| <span>Round Cushions </span>| <span>Sofa Covers </span>| <span>Cotton Bedsheets</span> |<span> Bedding Sets</span> | <span>Pillow Covers</span> | <span>Decorative Items</span> | <span>Duvet Covers</span> | <span>Blankets</span> | <span>Home Temple </span>| <span>Yoga mats </span>| <span>Bean Bags </span>|<span> Single Bed Sheet </span>| <span>Cushions</span> | <span>Face Towels </span>| <span>Cotton Towel </span>|...</p>
<h4>Men Ethnicwear</h4>
<p><span>Men Dhoti Kurtas </span>|<span> Men Indo Western Dresses</span> | <span>Men Velvet Sherwanis </span>| <span>Men Dhotis</span></p>
<h4>Women Western Wear</h4>
<p><span>Women Frocks </span>| <span>Long Tops Women </span>| <span>Tshirt Dresses</span> | <span>Designer Gown</span> | <span>Pencil Skirts </span>| <span>Women Trousers </span>| <span>Flared Jeans </span>|<span> Women Sweatshirts </span>| <span>Shrugs</span> | <span>Capris</span> | <span>Jacket Dresses</span>| <span>Fancy Ladies Sweater </span>| <span>Chikankari Palazzos </span>|<span> Ankle Length Leggings </span>| <span>Tights </span>|...</p>
<h4>Women Ethnicwear</h4>
<p><span>Silk Saree</span> |<span> Puff Sleeve Blouses </span>| <span>Chikankari Kurtis </span>| <span>Designer Lehenga</span> | <span>Sharara </span>| <span>Phulkari Dupatta</span> | <span>Petticoats </span>|<span> Abaya </span>| <span>Black Kurta</span> |<span> Velvet Shawls </span>| <span>Blouse Piece</span> |<span> Kurti Fabric </span>| <span>Designer Suits</span></p>
<h4>Women Footwear</h4>
<p><span> Women Slippers </span>| <span>Bellies </span>| <span>Juttis & Mojaris</span></p>
<h4>Women Accessories</h4>
<p><span>Hoop Earrings </span>| <span>Stud Earrings Women </span>| <span>Oxidised Ring </span>| <span>Handbags </span>|<span> Umbrellas </span>| <span>Cateye Sunglasses </span>| <span>Jewellery Set</span> | <span>Slingbags</span> | <span>Trolley Bags</span> |<span> Hijabs</span> | <span>Ankle Socks Women </span>| <span>Clutches</span> | <span>Hair Accessories</span> |<span> Maangtika</span> | <span>Pouches </span>| <span>Duffle Bags</span>...</p>
<h4>Electronics & Accessories</h4>
<p><span>Android Smart Watches </span>|<span> On Ear Headphones </span>| <span>Bluetooth Speakers</span> | <span>Bluetooth Earphones </span>| <span>Sport Headphones </span>| <span>CCTV Cameras </span>| <span>Spy Cameras </span>| <span>Keyboard </span>| <span>Laptop Bags </span>| <span>Mouse </span>| <span>Laptop Accessories </span>| <span>Pen Drives </span>| <span>Earphones </span>| <span>Fast Charging</span>...</p>
<h4>Men Western Wear</h4>
<p><span>Cotton Shorts Men </span>|<span> Denim Jeans Men</span> | <span>Formal Trousers Men</span> | <span>Men Active Shorts</span> | <span>Sport Jackets Men </span>| <span>Printed Tshirts </span>| <span>Formal Shirts Men </span>| <span>Sleeveless Sweatshirts Men </span>| <span>Leather Jackets Men</span> | <span>Grey Blazers </span>| <span>Men Sweaters</span> | <span>Sport Tracksuits Men </span>| <span>Vests </span>|...</p>
<h4>Men Footwear</h4>
<p><span>Reebok Sports Shoes Men</span> |<span> Men Sandals </span>|<span> Leather Loafers Men</span></p>
<h4>Men Accessories</h4>
<p><span>Leather Watches Men</span> | <span>Gold Jewellery Men </span>| <span>Hair Spray For Men</span> | <span>Men Keychains </span>| <span>Men Socks</span> |<span> Men Scarves</span> | <span>Men Wrist Bands </span>| <span>Men Crossbody Bags</span> |<span> Men Shirt Studs</span></p>
<h4>Kids</h4>
<p><span>Kids Lunch Boxes</span> |<span> Kids Ethnic Jackets</span> |<span> Kids Blazers </span>| <span>Rompers </span>| <span>Kids Kurtis & Kurtas </span> | <span>Kids Salwar Suit Sets </span>| <span>Kids Ethnic Gowns</span> | <span>Tshirts Boys </span>| <span>Girls Stylish Tops</span></p>
<h4>Baby</h4>
<p><span>Baby Pillows</span> |<span> Baby Towels</span> | <span>Baby Hanging Cradle</span> | <span>Baby Sleeping Bag </span>| <span>Baby Blanket</span></p>
<h4>Home & Kitchen</h4>
<p><span>Toaster</span> |<span> Mixer Grinder</span> | <span>Cookers </span>| <span>Juicer </span>| <span>Food Processors</span> | <span>Roti Maker</span> | <span>Sandwich Maker </span>| <span>Kettles</span> | <span>Hand Blender </span>| <span>Table Cover </span>| <span>Napkins Holder</span> | <span>Kitchen Mat </span>| <span>Kitchen Towel </span>| <span>Aprons </span>| <span>Kitchen Gloves </span>| <span>Racks & Holders</span> |<span> Spice Racks</span> | <span>Jars &</span>...</p>
<h4>Personal Care & Wellness</h4>
<p> <span>Tummy trimmer </span>| <span>Makeup Kits </span>| <span>Hair Color </span>| <span>Hair Steamers </span>| <span>Hair Care</span> | <span>Oral Care </span>| <span>Beard Oil</span> | <span>Deodorants </span>| <span>Eye Lenses</span> | <span>Soap </span>| <span>Oximeter </span>|<span> Bb Cream </span>|<span> Body Scrub</span> | <span>Olive Oils</span> | <span>Talcum Powder</span> |<span> Face Steamers </span>| <span>Compact</span> | <span>Nail Cutter</span> | <span>Lip Balm</span><p>
</div>
</div>
</footer>
</body>
</html>
<script src="scripts\product.js" type="module"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="scripts\nav.js" type="module"></script>