This page was made as a personal project in connection with an educational exercise.
This is NOT the official site of the company or brand identified on the page. The creator of this page is NOT affiliated with the company or brand in any way. DO NOT enter any personal information (such as logins, passwords or credit card numbers) on this site.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
952 lines (850 loc) · 39.8 KB
/
index.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
<!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>
Croma Electronics | Online Electronics Shopping | Buy Electronics Online
</title>
<!-- Navbar Related code Starts -->
<link rel="stylesheet" href="./styles/navbar.css" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link
rel="stylesheet"
href="https://unpkg.com/flickity@2/dist/flickity.min.css"
/>
<!-- Navbar Related code ends -->
<link
rel="shortcut icon"
href="https://image.winudf.com/v2/image/Y29tLmNyb21hLm1vYmlsZV9pY29uXzE1MTM2MjE2MDNfMDY2/icon.png?w=170&fakeurl=1"
type="img/jpg"
/>
<link rel="stylesheet" href="./styles/index.css" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link rel="shortcut icon" href="images/logo.png" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles/footer.css" />
</head>
<body>
<!-- Navbar Starts-->
<div id="navbar"></div>
<!-- Navbar Ends -->
<!------------------------- img slider is starting --------------->
<div class="slider">
<div class="images">
<input type="radio" name="slide" id="img1" checked />
<input type="radio" name="slide" id="img2" />
<input type="radio" name="slide" id="img3" />
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1648315709/Croma%20Assets/CMS/Homepage%20Banners/HP%20Rotating/2022/GET%20SUMMER%20READY/REVAMP/HP%20Rotating%20Banners/HP_AwesomeSummer_7March2022_tevckv.png/mxw_2048,s_webp,f_auto"
class="m1"
alt="img1"
/>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1648316022/Croma%20Assets/CMS/Homepage%20Banners/HP%20Rotating/2022/GET%20GAME%20READY_IPL2022/Hp%20Rotating/HP_ipl_24mar_fgysme.png/mxw_2048,s_webp,f_auto"
class="m2"
alt="img2"
/>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1648103043/Croma%20Assets/CMS/LP%20Page%20Banners/2022/Game%20War%20Zone%20Offers/UPDATED%20-%202403/LP%20Rotating%20Banner/LP_PlayAwesome_23March2022_etnxeh.jpg/mxw_2048,s_webp,f_auto"
class="m3"
alt="img3"
/>
</div>
<!-------------- radio dots starting ------------->
<div class="dots">
<label for="img1"></label>
<label for="img2"></label>
<label for="img3"></label>
</div>
<!--------------- radio dots starting ------------->
</div>
<!---------------------------------------- img slider ending ----------------------------------->
<!------------------------ highlights divs stating ----------------------->
<h2 class="h">Highlights</h2>
<!-- row one starting -->
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true}'
>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1643953896/Croma%20Assets/CMS/Homepage%20Banners/Highlights/2022/HP_Highlights_522x331_VideoCall_4Feb2022_hi8gxt.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1648316560/Croma%20Assets/CMS/Homepage%20Banners/Highlights1/HP_Highlights_ICICI_HDFC_12March2022_huiacp.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1648534566/Croma%20Assets/CMS/Homepage%20Banners/HP%20Rotating/2022/Mobile%20Fest/MARCH-END/HP_Highlights_SmartphonesFest_23March2022_vrpvgs.png/mxw_2048,s_webp,f_auto"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1647245650/Croma%20Assets/CMS/Homepage%20Banners/Highlights/HP_Highlight_Extreme-Performance-Machine_Extreme-Performance_14March2022_imtod6.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1643378307/Croma%20Assets/CMS/Homepage%20Banners/AFTER%20REPUBLIC%20-%20REVAMP/Highlights/HP_Highlights_522x331_DealOfTheWeek_12Jan_tp62th.png"
/>
</div>
</div>
<!-- row one ending -->
<!-- row2 starting -->
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true }'
>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1648112249/Croma%20Assets/CMS/Homepage%20Banners/Highlight2/HP_Highlight_SummerOffer-AC_23March2022_pxzgqf.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1648213032/Croma%20Assets/CMS/Homepage%20Banners/Highlight2/HP_Highlight_SamsungGalaxyBudsPro_25March2022_ra2kdy.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1648209656/Croma%20Assets/CMS/Homepage%20Banners/HP%20Rotating/HP_Highlight_SummerOffer_Reff_25March2022_ny2m87.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1648209657/Croma%20Assets/CMS/Homepage%20Banners/HP%20Rotating/HP_Highlight_SummerOffer_WM_25March2022_i25rpy.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1643378307/Croma%20Assets/CMS/Homepage%20Banners/AFTER%20REPUBLIC%20-%20REVAMP/Highlights/HP_Highlights_522x331_DealOfTheWeek_12Jan_tp62th.png"
/>
</div>
</div>
<!-- row2 ending -->
<!-- row3 starting -->
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true }'
>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1648548934/Croma%20Assets/CMS/Homepage%20Banners/New%20at%20croma/HP_NewAtCroma_522x418_SamsungA53_29March2022_ea8jhf.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1648118435/Croma%20Assets/CMS/Homepage%20Banners/New%20at%20croma/HP_NewAtCroma_522x418_iFFALCON_24March2022_xuyfx2.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1647541751/Croma%20Assets/CMS/Homepage%20Banners/New%20at%20croma/HP_NewAtCroma_522x418_AppleProducts_iPadAir_11March2022_zm4z8b.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1646047653/Croma%20Assets/CMS/Homepage%20Banners/New%20at%20croma/HP_NewAtCroma_522x418_CandyAppliances_27Feb2022_amosfn.png"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://media.croma.com/image/upload/v1646483907/Croma%20Assets/CMS/CAtegory/Mobile%20phone%20-%20C10/HP_BB_3Split_New-at-Croma_OnePlus-Y1S--_05Mar2022_ngz51l.png"
/>
</div>
</div>
<!--row3 ending -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>
<!----------------------------------------- highlights divs ending ----------------------------->
<!------------------------------------- popular brans starting --------------------------------->
<h2 class="h">Popular Brands</h2>
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true }'
>
<div class="carousel-cell">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1647245650/Croma%20Assets/CMS/Homepage%20Banners/Highlights/HP_PB_522x450_Air-Conditioners_14March2022_cav3zb.png/mxw_2048,s_webp,f_auto"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1648457665/Croma%20Assets/CMS/Homepage%20Banners/Popular%20Brands/HP_PB_522x450_Dolby_27March2022_hem35m.png/mxw_2048,s_webp,f_auto"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1646929369/Croma%20Assets/CMS/Homepage%20Banners/Popular%20Brands/HP_PB_522x450_Coolers_10March2022_rydu9o.png/mxw_2048,s_webp,f_auto"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1646047763/Croma%20Assets/CMS/Homepage%20Banners/Popular%20Brands/HP_PB_522x450_LG-_27Feb2022_abxljz.png/mxw_2048,s_webp,f_auto"
/>
</div>
<div class="carousel-cell">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1648118353/Croma%20Assets/CMS/Homepage%20Banners/Popular%20Brands/HP_PB_522x450_Redmi_TV_24March2022_a662cq.png/mxw_2048,s_webp,f_auto"
/>
</div>
</div>
<!------------------------------------- popular brands ending ------------------------>
<!------------------------------------ popular products starting ------------------------->
<h2 class="h">Popular Products</h2>
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true }'
>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1645260002/Croma%20Assets/Communication/Mobiles/Images/248830_jypqy5.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Realme 9 Pro+ 5G (128GB ROM, 6GB RAM)
<h5>₹20,999.00</h5>
<p class="cut" style="text-decoration: line-through">₹25,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1634907693/Croma%20Assets/Entertainment/Wireless%20Earbuds/Images/245225_qogkg6.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Apple AirPods 3 MME73HN/A In-Ear Truly...
<h5>₹22,399.00</h5>
<p class="cut" style="text-decoration: line-through">₹25,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1605271851/Croma%20Assets/Communication/Mobiles/Images/8999510245406.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Apple iPhone 13 (128GB ROM, MLPF3HN/A, Midnight Black).
<h5>₹73,990.00</h5>
<p class="cut" style="text-decoration: line-through">₹75,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1637933045/Croma%20Assets/Entertainment/Headphones%20and%20Earphones/Images/242300_pnmjdi.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
JBL Endurance Run In-Ear Wired Earphones with Mic (Black).
<h5>₹15,000.00</h5>
<p class="cut" style="text-decoration: line-through">₹20,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1641898153/Croma%20Assets/Large%20Appliances/Air%20Conditioner/Images/247176_cvjwtf.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Compare Connect to Store Samsung Arise 1.5 Ton....
<h5>₹41,890.00</h5>
<p class="cut" style="text-decoration: line-through">₹45,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1646029911/Croma%20Assets/Entertainment/Television/Images/247966_qqr9iu.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Croma 98cm (39 Inch) HD Ready LED TV (Flat Panel)....
<h5>₹12,490.00</h5>
<p class="cut" style="text-decoration: line-through">₹15,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
</div>
<!---------------------------------------- popular products ending ----------------------->
<!------------------------- mobile phones starting -------------------------------------->
<h2 class="h">Mobile Phones</h2>
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true }'
>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1645430707/Croma%20Assets/Communication/Mobiles/Images/248587_goudo9.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Realme 9 Pro+ 5G (128GB ROM, 6GB RAM)
<h5>₹23,999.00</h5>
<p class="cut" style="text-decoration: line-through">₹25,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1646917088/Croma%20Assets/Communication/Mobiles/Images/249841_ykho1t.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Apple AirPods 3 MME73HN/A In-Ear Truly...
<h5>₹84,399.00</h5>
<p class="cut" style="text-decoration: line-through">₹90,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1627911943/Croma%20Assets/Communication/Mobiles/Images/240579_r0r9oj.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Apple iPhone 13 (128GB ROM, MLPF3HN/A, Midnight Black).
<h5>₹18,490.00</h5>
<p class="cut" style="text-decoration: line-through">₹25,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1643001589/Croma%20Assets/Communication/Mobiles/Images/247573_q4hxkw.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
JBL Endurance Run In-Ear Wired Earphones with Mic (Black).
<h5>₹41,999.00</h5>
<p class="cut" style="text-decoration: line-through">₹43,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1631773796/Croma%20Assets/Communication/Mobiles/Images/243461_tgipil.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Compare Vivo V21(128GB) Arise 1.5 Ton....
<h5>₹41,890.00</h5>
<p class="cut" style="text-decoration: line-through">₹45,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1624523026/Croma%20Assets/Communication/Mobiles/Images/235454_idgeca.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Apple iPhone(128GB,ROM)....
<h5>₹73,990.00</h5>
<p class="cut" style="text-decoration: line-through">₹80,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
</div>
<!---------------------------------------- mobile phones ending -------------------------------->
<!--------------------------------------- Airconditin data starting ------------------------------>
<h2 class="h">Air Conditioners</h2>
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true }'
>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605278513/Croma%20Assets/Large%20Appliances/Air%20Conditioner/Images/8931229138974.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Croma 1 Ton 3 star Inverter Split AC...
<h5>₹28,990.00</h5>
<p class="cut" style="text-decoration: line-through">₹30,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1640760277/Croma%20Assets/Large%20Appliances/Air%20Conditioner/Images/246597_j5zjeq.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
LG 1.5 Ton 5 Star Inverter Split AC...
<h5>₹46,399.00</h5>
<p class="cut" style="text-decoration: line-through">₹50,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1641477317/Croma%20Assets/Large%20Appliances/Air%20Conditioner/Images/246820_oqfuqc.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Voltas 1.5 Ton 5 Star Inverter Split AC...
<h5>₹38,490.00</h5>
<p class="cut" style="text-decoration: line-through">₹40,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1627383938/Croma%20Assets/Large%20Appliances/Air%20Conditioner/Images/240160_xgnogh.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
O General 1.5 Ton 5 Star Inverter Split AC..
<h5>₹41,999.00</h5>
<p class="cut" style="text-decoration: line-through">₹45,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605265481/Croma%20Assets/Large%20Appliances/Air%20Conditioner/Images/8971611439134.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Croma 1.5 Ton 5 Star Inverter Split AC..
<h5>₹30,890.00</h5>
<p class="cut" style="text-decoration: line-through">₹32,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image har"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605262568/Croma%20Assets/Large%20Appliances/Air%20Conditioner/Images/9000230748190.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Voltas 1 Ton 3 star Inverter Split AC...
<h5>₹39,990.00</h5>
<p class="cut" style="text-decoration: line-through">₹40,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
</div>
<p class="under">View all</p>
<!--------------------------------------- Airconditin data ending --------------------------------->
<!------------------------------------------ wearables data starting ---------------------->
<h2 class="h">Wearables</h2>
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true }'
>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1642676548/Croma%20Assets/Wearable/Wearable%20Devices/Images/246450_gwyjmt.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Noise 5 star watch Inverter Split AC...
<h5>₹2,990.00</h5>
<p class="cut" style="text-decoration: line-through">₹3,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1638277897/Croma%20Assets/Communication/Wearable%20Devices/Images/241246_w7rfwf.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Noise ColoFit Pro 2 Oxy Smart Watch...
<h5>₹2,399.00</h5>
<p class="cut" style="text-decoration: line-through">₹3,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1607421318/Croma%20Assets/Wearable/Wearable%20Devices/Images/231331_ijtsqj.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Amaafit Bip U Smart watch (GPS)....
<h5>₹3,499.00</h5>
<p class="cut" style="text-decoration: line-through">₹4,500</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1642678323/Croma%20Assets/Wearable/Wearable%20Devices/Images/246684_jbxhco.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Fire-Bolt Beast Pro Smart Watch...
<h5>₹3,999.00</h5>
<p class="cut" style="text-decoration: line-through">₹4,500</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605330160/Croma%20Assets/Communication/Wearable%20Devices/Images/8966874628126.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Samsung Galaxy Watch3 Smart Watch...
<h5>₹16,890.00</h5>
<p class="cut" style="text-decoration: line-through">₹17,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
<div class="divpr">
<img
class="w3-image har"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1633350116/Croma%20Assets/Wearable/Wearable%20Devices/Images/244123_qlqdxn.png/mxw_320,s_webp,f_auto"
/>
<div class="divbr">
Fossil Gen 6 Smartwatch...
<h5>₹23,995.00</h5>
<p class="cut" style="text-decoration: line-through">₹25,000</p>
<h2 class="strimg">☆☆☆☆☆</h2>
</div>
</div>
</div>
<p class="under">View all</p>
<!---------------------------------------- wearables data ending ------------------------------->
<!---------------------- Top brands data starting ---------------------------------->
<h2 class="h">Top Brands</h2>
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true }'
>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1637840166/Croma%20Assets/Categories/Brand%20Logo/apple_white_tnzu0e.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1637840166/Croma%20Assets/Categories/Brand%20Logo/ssamsung_white_kwjvxm.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605350807/Croma%20Assets/Categories/Brand%20Logo/8990738907166.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605350822/Croma%20Assets/Categories/Brand%20Logo/8990736908318.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605350809/Croma%20Assets/Categories/Brand%20Logo/8990731829278.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1637840166/Croma%20Assets/Categories/Brand%20Logo/sony_white_t7nnpu.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605350818/Croma%20Assets/Categories/Brand%20Logo/8990734319646.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605350811/Croma%20Assets/Categories/Brand%20Logo/8990739169310.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1605350845/Croma%20Assets/Categories/Brand%20Logo/8990737825822.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
<div class="carousels-cell">
<center>
<img
class="w3-image tb"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1637840167/Croma%20Assets/Categories/Brand%20Logo/amazon_white_erxqdn.png/mxw_2048,s_webp,f_auto"
/>
</center>
</div>
</div>
<p class="under">View all</p>
<!------------------------------------------- Top brands data ending ----------------------->
<!------------------------------------- Top Categories data starting -------------------------------->
<h2 class="h">Top Categories</h2>
<div
class="carousel"
data-flickity='{ "wrapAround": true, "imagesLoaded":true }'
>
<div class="divpr1">
<img
class="w3-image imgtc"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1628240750/Croma%20Assets/CMS/top_category/Home_Appliances_31_kfl0o8.jpg/mxw_2048,s_webp,f_auto"
/>
<div class="divbr1">
<h3>Home Appliances</h3>
</div>
</div>
<div class="divpr1">
<img
class="w3-image imgtc"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1628240750/Croma%20Assets/CMS/top_category/Computers._tablets_40_so61uj.jpg/mxw_2048,s_webp,f_auto"
/>
<div class="divbr1">
<h3>Computers & Tablets</h3>
</div>
</div>
<div class="divpr1">
<img
class="w3-image imgtc"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1628240750/Croma%20Assets/CMS/top_category/Kitchen_Appliances_22_moahza.jpg/mxw_2048,s_webp,f_auto"
/>
<div class="divbr1">
<h3>Kitchen Appliances</h3>
</div>
</div>
<div class="divpr1">
<img
class="w3-image imgtc"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1628240750/Croma%20Assets/CMS/top_category/Phones_Wearables_43_hc3kui.jpg/mxw_2048,s_webp,f_auto"
/>
<div class="divbr1">
<h3>Phones & Wearables</h3>
</div>
</div>
<div class="divpr1">
<img
class="w3-image imgtc"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1628240750/Croma%20Assets/CMS/top_category/Cameras_89_ymrktl.jpg/mxw_2048,s_webp,f_auto"
/>
<div class="divbr1">
<h3>Cameras & Accessories</h3>
</div>
</div>
<div class="divpr1">
<img
class="w3-image imgtc"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1628240751/Croma%20Assets/CMS/top_category/Televisions_11_ckrtnk.jpg/mxw_2048,s_webp,f_auto"
/>
<div class="divbr1">
<h3>Television & Accessories</h3>
</div>
</div>
</div>
<p class="under">View all</p>
<!-------------------------------------- Top Categories data ending ----------------------->
<!------------------------- shope safety data strting ------------------------>
<h2 class="hb">Shop Safety with Croma</h2>
<div id="mini_container">
<div id="divshop">
<div>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1637912096/Croma%20Assets/CMS/Shop%20Safely/Shop_with_Video_ioiaui.svg/mxw_2048,s_webp,f_auto"
alt=""
/>
</div>
<div>
<p id="heading">Store at Home</p>
<p class="subheading">START A VIDEO CALL</p>
</div>
</div>
<div id="divshop">
<div>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1637912096/Croma%20Assets/CMS/Shop%20Safely/Zip_Delivery_l6o2gk.svg/mxw_2048,s_webp,f_auto"
alt=""
/>
</div>
<div>
<p id="heading">Zip Delivery</p>
<p class="subheading">ENTER PINCODE</p>
</div>
</div>
<div id="divshop">
<div>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1637912096/Croma%20Assets/CMS/Shop%20Safely/Connect_to_store_unfw5f.svg/mxw_2048,s_webp,f_auto"
alt=""
/>
</div>
<div>
<p id="heading">Connect to Store</p>
<p class="subheading">REGISTER NOW</p>
</div>
</div>
</div>
<!------------------------- shope safety data strting ------------------------>
<!-- data strting -->
<div class="hda">
Launched in 2006, first one-of-its kind large format specialist retail
electronics store, Croma, caters to over 12 Million happy customers for
all of their multi-brand digital gadgets and home electronics. Since its
inception, Croma has become synonymous for all electronics needs, both
online & in-store, with a wide product range and tech-savvy staff with a
will to help customers throughout their buying journeys.<br /><br />
With a promise of a ‘#Brighter Every Day’ to its customers, Croma offers a
world-class ambience and seamless ‘omni-channel’ shopping experience to
enjoy the best of both, the online shopping & the offline worlds. By
availing Croma’s omni-channel services, as a customer, one can enjoy
online shopping and have the product delivered at their doorstep or can
avail the pick-up from a Croma store near me service. Customers can also
opt for Zip Express delivery service that makes sure to deliver the
product at their doorstep within 3 hours in select cities.<br /><br />
With over 200 brands and 190+ stores across 40+ major cities of India,
Croma ensures fulfilling electronic needs of each customer, and that there
is something for everyone.<br /><br />
Whether you're setting up a new home or simply looking for an upgrade,
Croma offers an eclectic range of electronics to suit your needs. Browse
through an array of Home & Kitchen Appliances such as Air Conditioners,
Refrigerators, Washing Machines, Vacuum Cleaners, Microwave, Air Fryers,
Soup Makers, Cooktops, Dishwashers, Water Heaters and many more such
product categories.<br /><br />
You can also make upgrading easy with an all-inclusive collection of LED
TV, Speakers & Sound Systems. So, whether you're looking at rekindling
your lost hobby with a Digital Camera, or hoping to surprise your loved
ones with the latest Mobile, Laptop, or Desktop, Croma is a one-stop shop
solution for all your needs.<br /><br />
If that's not all, Croma also offers an assortment of various other
product categories to simplify your life including Home Safety Security,
Wired & Wireless Headphones, Earphones, Smart Wearable Devices and all
kinds of Accessories.<br /><br />
With an attempt to become a go-to destination for all electronic goods,
Croma has set up a platform called Gadgets of Desire that showcases all
the New@Croma, quick-pick & latest technology products. This section is
specially curated to match expectations of every innovative gadget lover,
tech-savvy customer or for those looking for unique gifting ideas. Gadgets
of Desire focuses to satiate every fitness freak, travel lover, in-house
DJ or a computer geek. Croma assures your #BrighterTomorrow begins
today!<br /><br />
To delight customers all along, Croma also launched its own label products
in 2008. Brand Croma stands for Life More Beautiful; a promise based not
just on the beauty in the way they look, but mainly as a value they offer
to a customer’s life. This range is a perfect fit, especially for those
who desire a completely feature-packed and quality product in a pocket
friendly price range. Additionally, to ensure that customers enjoy their
product to the fullest, Croma encourages purchase of Annual Maintenance
Plans and Extended Warranty to safeguard their product against mishaps and
accidental damages during or beyond brand warranty.<br /><br />
Croma also rewards customers with cashbacks and discounts as a part of
Privileges Programme to get more for their money and exceptional after
sales service. Members in this programme enjoy Loyalty Discounts,
Pre-qualified Credit, Exchange & Upgrade Benefits, Assured Lifetime
Service and 14 Day Fix/Replace Assurance on select Home Appliances and
LEDs. To register, give a missed call on 1800-22-6699, and redeem
exclusive benefits at the nearest Croma store or on www.croma.com! This
programme also includes Gift Card, a solution that gives customers the
freedom of choice between physical Gift Cards or e-Gift Vouchers of
multiple denominations.<br /><br />
Croma offers multiple payment gateways to select preferred payment option.
A customer can choose from various payment modes like credit or debit
cards, payment wallets and cash-on-delivery. Croma allows its customers to
avail Easy EMI options on credit & debit cards or through available
consumer finance options.<br /><br />
Croma is a brand of Infiniti Retail Limited, which is a part of the Tata
Group.
</div>
<!-- data ending -->
<!-- FOOTER CODE STARTS -->
<div id="footer"></div>
<!-- FOOTER CODE ENDS -->
</body>
</html>
<!-- Navbar Related code Starts -->
<script type="module">
//
import navbarImp from "./components/navbar.js";
//console.log("navbarImp:", navbarImp());
let navID = document.getElementById("navbar");
navID.innerHTML = navbarImp();
document
.getElementById("nav-top-search")
.addEventListener("keypress", (elem) => {
if (elem.code == "Enter") {
//console.log(elem);
let inputVal = document.getElementById("nav-top-search").value;
console.log("inputVal:", inputVal);
if (
inputVal == "mobile" ||
inputVal == "MOBILE" ||
inputVal == "Mobile" ||
inputVal == "mobiles" ||
inputVal == "MOBILES" ||
inputVal == "Mobiles"
) {
console.log("passed if condition:", inputVal);
}
//window.location = "";
}
});
//
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>
<!-- Navbar Related code ends -->
<script type="module">
//
import footerImp from "./components/footer.js";
//console.log("navbarImp:", navbarImp());
let footerID = document.getElementById("footer");
footerID.innerHTML = footerImp();
</script>