-
Notifications
You must be signed in to change notification settings - Fork 2
/
category.html
1052 lines (950 loc) · 32.4 KB
/
category.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
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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>Mens-Clothing</title>
<link rel="stylesheet" href="category.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- <link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Roboto:wght@100;300&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Roboto:wght@100;300;400;500&display=swap"
rel="stylesheet"
/> -->
<script
src="https://kit.fontawesome.com/034163b1ad.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Header-Start -->
<div id="navbar">
<div id="top" class="colortop">
<p class="hov">Sell with Us</p>
<p class="line hov">Call Us</p>
<p class="line">Download App</p>
<div>
<img src="https://cdn-icons-png.flaticon.com/512/174/174836.png"
alt=""" class=" img1">
<a href=" https://apps.apple.com/IN/app/id994486085?mt=8"
><i class="fab fa-apple"></i
></a>
<a
href="https://www.microsoft.com/en-in/p/shopclues/9nblgggzpjjd?rtc=1&activetab=pivot:overviewtab"
target="_blank"
><i class="fab fa-windows"></i
></a>
</div>
</div>
<div id="middle">
<div>
<img
src="https://images.shopclues.com/images/ui/[email protected]"
alt=""
class="img2"
id="logo"
/>
</div>
<div class="join">
<i class="fas fa-search" style="padding-right: 12px"></i>
<input
type="text"
name=""
id="Search"
placeholder="What is on your mind today?"
/>
<!-- <input type="submit"> -->
<button>Search</button>
</div>
<div id="right" class="flex">
<div class="flex map-logo-share r1">
<div class="align map-logo">
<p class="small2 bold">Share</p>
<p class="small2">Location</p>
</div>
<i id="maplogo" class="fas fa-map-marker-alt fa-lg fa-customize"></i>
</div>
<div>
<i class="far fa-bell fa-customize"></i>
</div>
<div>
<i class="far fa-heart fa-customize"></i>
</div>
<div>
<i class="fas fa-shopping-cart fa-customize"></i>
</div>
<div>
<h4
class="align"
style="border: 1px solid transparent; margin: 7px"
>
<span
style="
display: inline-block;
line-height: 24px;
font-weight: 500;
color: #212121;
position: relative;
font-size: 90%;
"
>Hi,</span
><span
id="guest"
style="
display: inline-block;
line-height: 24px;
font-weight: 500;
color: #212121;
position: relative;
font-size: 90%;
"
>Guest</span
> <span
id="login"
style="
display: inline-block;
line-height: 24px;
font-weight: 500;
color: #212121;
position: relative;
font-size: 90%;
"
>Sign In</span
>
</h4>
</div>
</div>
</div>
<div id="bottom">
<img
src="https://images.shopclues.com/images/ui/madeinindia.png"
alt=""
height="33px"
id="madeInIndia"
/>
<ul>
<li>MOBILE & MORE</li>
<li id="manbtn">MEN</li>
<li>WOMEN</li>
<li>HOME & KITCHEN</li>
<li>APPLIANCES</li>
<li>SPORTS & MORE</li>
<li>ESSENTIALS</li>
<li>OFFERS</li>
<li>GLOBAL SHOPPING</li>
</ul>
</div>
</div>
<!-- Header-End -->
<!-- Body-Start -->
<div id="mainbodydiv">
<!--Content-Start-->
<div id="bodyDiv">
<!-- Heading start -->
<div class="pageHeading">
<h1>Men's Clothing</h1>
</div>
<!-- Heading-End -->
<!-- Category-Box -Start -->
<div id="category">
<div id="tshirt" class="imghov">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/updated/img_t_shirt_nav.jpg"
alt="tshirt"
class="allImage"
/>
</div>
</div>
<div>T-Shirt</div>
</div>
<div class="imghov">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/updated/img_jeans_nav.jpg"
alt="jense"
class="allImage"
/>
</div>
</div>
<div>Jeans</div>
</div>
<div class="imghov">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/updated/img_casual_shirt_nav.jpg"
alt="casualshirt"
class="allImage"
/>
</div>
</div>
<div>Casual Shirts</div>
</div>
<div class="imghov">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/updated/img_formal_shirt_nav.jpg"
alt="formalshirt"
class="allImage"
/>
</div>
</div>
<div>Formal Shirt</div>
</div>
<div class="imghov">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/updated/img_winterwear_nav.jpg"
alt="winterwear"
class="allImage"
/>
</div>
</div>
<div>Winter Wear</div>
</div>
<div class="imghov">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/updated/img_ethnic_wear_nav.jpg"
alt="ethnicwear"
class="allImage"
/>
</div>
</div>
<div>Ethnic Wear</div>
</div>
<div class="imghov">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/updated/img_innerwear_nav.jpg"
alt="innerwear"
class="allImage"
/>
</div>
</div>
<div id="incheight">Innerwear & Sleepwear</div>
</div>
<div class="imghov" id="viewall">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/img_view_more.jpg?version=1"
alt="viewall"
class="allImage"
/>
</div>
</div>
<div>Wiew All</div>
</div>
</div>
<!-- Category-Box-End -->
<!-- Ad section start -->
<div id="addiv">
<div>
<img
src="https://cdn.shopclues.com/images/banners/NewArrival_HB_Desk_Satin.jpg"
alt="adimage"
class="allImage"
/>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/GoldBanner_Jeans_Desk_13June.jpg"
alt="ad1"
class="allImage"
/>
</div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/GoldBanner_Tshirt_Desk_13June.jpg"
alt="ad2"
class="allImage"
/>
</div>
</div>
</div>
<!-- Add Section End -->
<!-- Trending-Brand-box start -->
<div id="trendingbox">
<div><p>TRENDING BRANDS</p></div>
<div>
<div></div>
</div>
</div>
<!-- Trending-Brand-box end -->
<!-- Trending brand body page start -->
<div id="trendingbody">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/men_clp/Pause.jpg"
alt=""
class="allImage"
/>
</div>
<div>
<div>MIN. 40% OFF</div>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/men_clp/killer.jpg"
alt=""
/>
</div>
<div>
<div>UPTO. 50% OFF</div>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/men_clp/john_players.jpg"
alt=""
/>
</div>
<div>
<div>UPTO. 40% OFF</div>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/men_clp/mufti.jpg"
alt=""
/>
</div>
<div>
<div>UPTO. 70% OFF</div>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/men_clp/lotto.jpg"
alt=""
/>
</div>
<div>
<div>UPTO. 50% OFF</div>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/men_clp/Lawman.jpg"
alt=""
/>
</div>
<div>
<div>UPTO. 55% OFF</div>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/men_clp/lee.jpg"
alt=""
/>
</div>
<div>
<div>UPTO. 50% OFF</div>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/men_clp/Campus_Sutra.jpg"
alt=""
/>
</div>
<div>
<div>UPTO. 50% OFF</div>
</div>
</div>
</div>
<!-- Trending brand body page end -->
<!-- Shop by category header Start-->
<div class="categoryHeader">
<div><p>SHOP BY CATEGORIES</p></div>
<div>
<div></div>
</div>
</div>
<!-- Shop by category header End-->
<!-- Shop by category body Start-->
<div id="categorybody">
<div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Shop_by_categories_Western_wear_alam_8aug.jpg"
alt=""
class="allImage"
/>
</div>
<div>WESTERN WEAR</div>
<div class="smalltext">Formal Shirt</div>
<div class="smalltext">Formal Trousers</div>
<div class="smalltext">Casual Shirt</div>
<div class="smalltext">Casual Trousers</div>
<div class="smalltext">T-Shirt</div>
<div class="smalltext">Jeans</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Shop_by_categories_Ethnic_wear_alam_8aug.jpg"
alt=""
class="allImage"
/>
</div>
<div>ETHNIC WEAR</div>
<div class="smalltext">Kurtas</div>
<div class="smalltext">Kurtas Pyjama Sets</div>
<div class="smalltext">Nehru Jacket</div>
<div class="smalltext">Sherwani</div>
<div class="smalltext">Indo Western</div>
<div class="smalltext">Dhoti And Lungi</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Shop_by_categories_Inner_wear_alam_8aug.jpg"
alt=""
class="allImage"
/>
</div>
<div>INNER WEAR</div>
<div class="smalltext">Underwear</div>
<div class="smalltext">Vests</div>
<div class="smalltext">Boxers</div>
<div class="smalltext">Shorts & Cargos</div>
<div class="smalltext">Pyjamas & Lounge Pants</div>
<div class="smalltext">Combos</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Shop_by_categories_Winter_wear_alam_8aug.jpg"
alt=""
class="allImage"
/>
</div>
<div>WINTER WEAR</div>
<div class="smalltext">Suits And Blazer</div>
<div class="smalltext">Jackets</div>
<div class="smalltext">Sweatshirt</div>
<div class="smalltext">Sweater</div>
<div class="smalltext">Thermal</div>
<div class="smalltext">Trackpant</div>
</div>
</div>
</div>
<!-- Shop by category body end-->
<!-- Shop by price heading Start-->
<div class="categoryHeader" id="shopbypricehead">
<div><p>SHOP BY PRICE</p></div>
<div>
<div></div>
</div>
</div>
<!-- Shop by Price heading end -->
<!-- Shop by price Body Start-->
<div class="shopbypricebody">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/img_199.png"
alt=""
class="allImage"
/>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/img_299.png"
alt=""
class="allImage"
/>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Work/widgetClp/MenApparelCLPNov24/img_399.png"
alt=""
class="allImage"
/>
</div>
</div>
</div>
<!-- Shop by price Body End-->
<!-- Shop by discount header start -->
<div class="categoryHeader" id="shopbydishead">
<div><p>SHOP BY DISCOUNT</p></div>
<div>
<div></div>
</div>
</div>
<!-- Shop by discount header end -->
<!--Shop by discount body start -->
<div class="shopbypricebody">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/flat50off.png"
alt=""
class="allImage"
/>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/flat70off.png"
alt=""
class="allImage"
/>
</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/flat80off.png"
alt=""
class="allImage"
/>
</div>
</div>
</div>
<!--Shop by discount body end-->
<!--Shop by occassion head start-->
<div class="categoryHeader" id="shopbyoccation">
<div><p>SHOP BY OCCASION</p></div>
<div>
<div></div>
</div>
</div>
<!--Shop by occassion head end-->
<!--Shop by occassion body start-->
<div id="occationbiody">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Shop_by_occasion_Formal_alam_8aug.jpg"
alt=""
class="allImage"
/>
</div>
<div>FORMAL</div>
<div>STARTS @ 299</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Shop_by_occasion_Casual_alam_8aug.jpg"
alt=""
class="allImage"
/>
</div>
<div>CASUAL</div>
<div>UPTO 70% OFF</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/Shop_by_occasion_Festive_alam_8aug.jpg"
alt=""
class="allImage"
/>
</div>
<div>FESTIVE</div>
<div>UPTO 70% OFF</div>
</div>
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/winterwear_shopbyoccassion.jpg"
alt=""
class="allImage"
/>
</div>
<div>WINTER WEAR</div>
<div>MIN 40% OFF</div>
</div>
</div>
<!--Shop by occassion body end-->
<!-- Trending header start -->
<div id="trendingnow">
<div>TRENDING NOW</div>
<div>
<div></div>
</div>
</div>
<!-- Trending header end -->
<!-- Trending body start -->
<div id="trendbody">
<div>
<img
src="https://cdn.shopclues.com/images/banners/TN_bigPastelT-Shirts_Desk_Satin.jpg"
alt=""
class="allImage"
/>
</div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/TN_PastelT-Shirts_Desk_Satin.jpg"
alt=""
class="allImage"
/>
</div>
</div>
<!-- Trending body end -->
<!-- Trending page 2 start -->
<div id="trendbody2">
<div>
<img
src="https://cdn.shopclues.com/images/banners/leatherjacket_desktop_trend.jpg"
alt=""
class="trendimg"
/>
</div>
<div>
<div></div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/TN2_WashedDenims_Desk_Satin.jpg"
alt=""
class="allImage"
/>
</div>
</div>
</div>
<!-- Trending page 2 end -->
<div id="trendbody3">
<div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/TN_Monochromes_Desk_Satin.jpg"
alt=""
class="allImage"
/>
</div>
</div>
<div>
<img
src="https://cdn.shopclues.com/images/banners/TN_bigMonchromes_Desk_Satin.jpg"
alt=""
class="allImage"
/>
</div>
</div>
</div>
<!--Content-End-->
</div>
<!--body-content-End-->
<!-- footer section starts here -->
<footer>
<!-- 1st div -->
<div>
<img src="./resources/footer_band_of_trust.png" alt="" />
</div>
<!-- 2nd div -->
<div>
<ul>
<li>Shopper Central</li>
<li>Easy Returns & Replacement</li>
<li>Sign in / Register</li>
<li>Our Policies</li>
<li>CluesBucks</li>
<li>Payment Options</li>
<li>Shopclues Surety</li>
<li>FAQs(Help)</li>
<li>Service Centers</li>
<li>User Agreement</li>
<li>Refer & Earn</li>
</ul>
<ul>
<li>Merchant Central</li>
<li>Merchant Panel</li>
<li>How to Sell</li>
<li>Commission Structure</li>
<li>Fullfillment Policy</li>
<li>Policies & Rules</li>
<li>User Agreement</li>
<li>Testimonials</li>
<li>Seller Summit</li>
<li>Merchant Blog</li>
<li>Developer Resources</li>
</ul>
<ul>
<li style="color: rgb(38, 164, 182)">About us</li>
<li>History</li>
<li>Band of Trust</li>
<li>Brand Guidelines</li>
<li>TV Commercials</li>
<li>In the News</li>
<li>Awards</li>
<li>Careers</li>
<li>Blogs</li>
</ul>
<ul>
<li>Contact Us</li>
<li>Merchant Support</li>
<li>Bulk Orders</li>
<li>Press</li>
</ul>
<ul>
<li>Press</li>
<li>In the News</li>
</ul>
</div>
<!-- 3rd div -->
<div>
<!-- left div -->
<div>
<div>Keep in touch</div>
<div>
<img src="./resources/footer_icon.png" alt="" style="width: 60%" />
</div>
</div>
<!-- right div -->
<div>
<div>100% Secure and Trusted Payment</div>
<div>
<img
src="https://images.shopclues.com/images/ui/[email protected]"
/>
</div>
</div>
</div>
<!-- 4th div -->
<div>
<div>Our Leading Categories</div>
<div>
<span>Mobile & Tablets:</span>Android Phones | Smartphones |
Feature Phones | Unboxed Phones | Refurbished Phones | Tablets | CDMA
Phones | Value Added Services | Sell Old/ User Mobiles
</div>
<div>
<span>Computers: </span>Laptops | Printers | Routers | Ink & Toner
Cartridges | Monitors | Video Games | Unboxed & Refurbished Laptops |
Assembled Desktops | Data Cards
</div>
<div>
<span>TV, Audio & Large Appliances: </span>TVs & DTH | Home Theatre
Systems | Hidden Cameras & CCTVs | Refrigerators | Washing Machines |
Air Conditioners | Cameras | Speakers & Woofers
</div>
<div>
<span>Mobile & Laptop Accesories: </span>Headphones | Power Banks |
Backpacks | Mobile Cases & Covers | Pen Drives | External Hard Disks |
Mouse | Smart Watches & Fitness Bands | MicroSD Cards
</div>
<div>
<span>Appliances: </span>Appliances:Trimmers| Hair Dryers| Emergency
Lights| Water Purifiers| Electric Kettles| Hair Straighteners|
Induction Cooktops| Sewing Machines| Geysers
</div>
<div>
<span>Home & Kitchen: </span>Bedsheets | Hardware & Sanitaryware |
Towels, Bath Linens | Furniture | Cookware | Kitchen Tools | Home
Cleaning Utilities | Doormats | Curtains | Gardening Essentials
</div>
<div>
<span>Fashion: </span>Women's Clothing | Men's Clothing | Women's
Ethnic Wear | Men's Fashion Accessories | Sports Wear | Western Wear |
Handbags & Wallets, Clutches | Handbags | Sarees | T-Shirts | Lingerie
& Sleep Wear
</div>
<div>
<span>Footwear: </span>Men's Sports Shoes | Men's Slippers | Casual
Shoes | Sandals & Floaters | Formal Shoes | Women Flats | Ballerinas |
Loafers | Boots | Shoe Care & Accessories
</div>
<div>
<span>Travel & Luggage: </span>Duffle Bags | Laptop Bags | Travel
Pouches | Backpacks | Suitcases & Trolleys | Travel Accessories | Gym
Bags | Messenger Bags | School Bags | Safety Locks
</div>
<div>
<span>Jewelry & Watches: </span>Coins & Bars | Men's Watches | Women's
Watches | Necklaces Sets | Fashion Jewelry | Pendants and Lockets |
Earrings | Rings | Jewelry Boxes | Kid's Watches
</div>
<div>
<span>Automotive: </span>Bike Accessories / Tools | Car Cleaning Aids
| Helmets | Bike Body Covers | Car Accessories / Tools| Riding Gloves
| Car Perfumes | Car Scratch Removers | Car Audio | Video | Bike
Alarms
</div>
<div>
<span>Toys, Baby & Kids : </span>Diapers | Educational Toys | Kid's
Footwear | Remote Controlled Toys | Soft Toys | Party Supplies | Cubes
| Maternity Care | Kid's Apparel
</div>
<div>
<span>Gourmet & Daily Needs : </span>Office Supplies | Pet Supplies |
Books | Namkeen | Stationery | Pens & Markers | Tea & Coffee |
Chocolates & Candies | Indian Sweets | Gifts
</div>
<div>
<span>Sports and Health: </span>Home Gym Equipment | Exercise Bikes |
Gym Accessories | Massagers | Diabetic Care | Cricket | Table Tennis
</div>
<div>
<span>Beauty & Perfumes: </span>Grooming Essentials | Deodorants |
Men's Perfumes | Hair Care | Women's Perfumes | Face Packs | Oral Care
| Herbal Care | Value Combo | Women's Hygiene
</div>
<div>
<span>Popular on ShopClues</span>
Offers & Coupons | Couple Watches | Gas Stoves | Air Coolers | Air
Purifiers | Headphones / Mic / Headset | Pressure Cookers | Sandwich
Makers | Air Friers / Deep Friers | Irons | LED TV | Men Jackets |
Educational Toys | Stabilizers | Heaters | Car Audio Systems | Photo
Frames | Men's Shoes | Decorative Lights | Rain Wear | Bedsheets | Top
Brands | Refer & Earn
</div>
</div>
<!-- 5th div -->
<div>
<div>Online Shopping in India @Shopclues.com</div>
<div>
<span>India’s Asli Online Shopping Hub – ShopClues.com</span>Back in
2011, when people were hopping from one Store to another for best
bargains on an overall household’s monthly bill, ShopClues was being
developed as a budget-friendly online bazaar in India. ShopClues.com
was then given a shape and strategy in 2012 as India’s First & Largest
Fully Managed Marketplace.
</div>
<div>
<span>Ting se Leke Tong – with Aflatooni Products!</span>‘What you
Think is What you Get’ isn’t just a saying at ShopClues. With over 2.8
crore products, you can get just about everything that you can imagine
at ShopClues. From usual products in Electronics, Fashion, Home &
Kitchen, to unusual products like cow dung cakes, Knife Sharpeners,
etc., ShopClues tops in everything. So, you see what we mean when we
say Aflatooni Products! ShopClues has revolutionized the conceptual
Online Shopping in India with initiatives such as Ghar Wapsi Sale,
Bigger than the Biggest Thank You Sale, #EkZeroKum Sale etc. Amongst
many other shopping sites, ShopClues is the leader in unstructured
categories like Daily Utilities, Garden Needs, Hardware, Kitchen
Storage, and others.
</div>
<div>
<span>Believable Shopping @ Unbelievable Prices</span>Every day,
ShopClues delights millions of discount-hunters with Paisa-Vasool
Shopping Experience with prices as low as Re.1. We are the first ones
to introduce the idea of ‘Sab Kuch Wholesale Ke Rate Par’ on an online
platform with shopping options to both wholesale as well as retail
seekers.
</div>
<div>
<span> Experiencing the neighbourhood Local Bazaar </span>ShopClues
brings the experience of India’s Flea Markets online, in the form of
its weekly properties - Sunday Flea Market, Refreshing Monday Sale,
Triple Value Friday Sale, and Wednesday Brand Bazaar. Another property
capturing the essence of regional Indian shopping is called NRH
(National Regional Heritage), which gives a sneak-peek into India’s
Cultural Gullies at very reasonable prices. These online markets
showcase products with range so wide, and prices so low, that they
beat the offline neighbourhood markets of India. The concept
especially works incredibly well with the middle class population
habituated in tier 2 & 3 cities.
</div>
<div>
<span>An Online Selling Space for SME Merchants</span>Working as a
marketplace, ShopClues has been well-supported by a bourgeoning
community of certified merchants in India. Unlike various other online
shopping sites, ShopClues has achieved the largest merchant base of
over 3.5 Lakhs. This online shopping website is creating history by
empowering local and regional merchants, primarily from Tier 2 & 3
cities and making them a national enterprise at ShopClues.
</div>
<div>
<span>Shopclues Surety </span>
The
<a href="shopclues-surety.html">suretyShopclues Surety Program</a>,
was launched in order to ensure a hassle free shopping experience for
its customers. This premium service is in addition to the ShopClues
Buyer Protection program which ensures an extensive 5 point quality
check of the products in order to give Customers a seamless shopping
experience. In order to make it user-friendly, the platform marks out
the rating of the products classified into ‘Best Buy’, ‘Great Buy’,
‘Value Buy’ or ‘Brand Authorized’. This allows the customer to make an
optimal purchase decision while shopping on the platform.
</div>
<div>
<span>ShopClues VIP Club</span>
Get Rewards Every time you Shop! Join the VIP Club and Get 5% Cashback
on Every Order. That's not all! With Free Membership, No Hidden Costs
& No Registration Procedures, get Exclusive Benefits on Grofers,
Lenskart, Food Panda & Hi Care Pest Control Services.
<a href="join-club.html">Join the Club Now</a>
</div>