-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththird.html
1822 lines (1765 loc) · 71.2 KB
/
third.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" />
<!-- for logo -->
<link
rel="shortcut icon"
href="https://lh3.googleusercontent.com/Hh_QKiJDmg2LQdL2aJ3cw_hBnWyH6dEqaFsiOgLNAZ6XnpPVuvrBCSeNzKQA8GCk519H=s180"
type="image/x-icon"
/>
<!-- for sliding -->
<link
rel="stylesheet"
href="https://unpkg.com/flickity@2/dist/flickity.min.css"
/>
<!-- for linking -->
<link rel="stylesheet" href="third.css" />
<link rel="stylesheet" href="./styles/navbar.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<!-- for greater font -->
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<!-- for upper font arrow -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>OnePlus Nord 2 5G (128GB ROM, 8GB RAM, DN2101, Blue Haze)</title>
</head>
<body>
<div id="container"></div>
<div id="gvmainBox">
<div id="gvupperBox">
<div><a href="">Phones & Wearables</a></div>
<div>
<i
class="far fa-greater-than"
style="color: #999787; margin-right: 5%"
></i>
<a href="">Mobile Phones</a>
</div>
<div>
<i
class="far fa-greater-than"
style="color: #999787; margin-right: 9%"
></i
><a href="">Android Phones</a>
</div>
</div>
<div id="gvphoneDetails">
<div id="gvmainBoxgv">
<div id="gviconBox">
<i class="fa fa-eye" style="font-size: 18px; color: white"></i>
<span style="color: white; margin-left: 4%">50675</span>
<i
class="fa fa-share-alt"
style="font-size: 18px; color: white; margin-left: 3%"
></i>
<i
class="fa fa-heart-o"
style="font-size: 18px; color: white; margin-left: 3%"
></i>
</div>
<div class="gvleftmainBoxgv">
<div class="gvproductThumbnailsgv">
<div
style="
position: relative;
text-align: center;
margin-bottom: 10px;
margin-right: 20px;
"
>
<i class="arrow up"></i>
</div>
<div class="gvswiper-containergv">
<div
class="gvthumbSliderWrapperClassgv"
style="transform: translate3d(0px, 0px, 0px)"
>
<div
class="gvthumbSlideClassgv gvthumbsSliderActiveClassgv"
id="gvthumb1gv"
style="height: 74px; margin-bottom: 5px"
>
<div>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1627022120/Croma%20Assets/Communication/Mobiles/Images/240335_mwklie.png/mxw_1440,f_auto"
title="Modern Noise Red Checks Shirts-Front Bewakoof"
alt="Shop Modern Noise Red Checks Shirts-Front"
width="100%"
class="gvproductThumbImagegv"
/>
</div>
</div>
<div
class="gvthumbSlideClassgv"
id="gvthumb2gv"
style="height: 74px; margin-bottom: 5px"
>
<div>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1629697062/Croma%20Assets/Communication/Mobiles/Images/240335_1_fdbucf.png/mxw_1440,f_auto"
title="Modern Noise Red Checks Shirts-Back Bewakoof"
alt="Shop Modern Noise Red Checks Shirts-Back"
width="100%"
class="gvproductThumbImagegv"
/>
</div>
</div>
<div
class="gvthumbSlideClassgv gvthumbVideoClassgv"
id="gvthumb3gv"
style="height: 74px; margin-bottom: 5px"
>
<div>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1629697064/Croma%20Assets/Communication/Mobiles/Images/240335_2_kkce4d.png/mxw_1440,f_auto"
title=" Bewakoof"
alt="Shop "
width="100%"
class="gvproductThumbVideogv"
/>
</div>
</div>
<div
class="gvthumbSlideClassgv"
id="gvthumb4gv"
style="height: 74px; margin-bottom: 5px"
>
<div>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1627022120/Croma%20Assets/Communication/Mobiles/Images/240335_3_czoa7i.png/mxw_1440,f_auto"
title="Modern Noise Red Checks Shirts-Design Bewakoof"
alt="Shop Modern Noise Red Checks Shirts-Design"
width="100%"
class="gvproductThumbImagegv"
/>
</div>
</div>
<div
class="gvthumbSlideClassgv"
id="gvthumb5gv"
style="height: 74px; margin-bottom: 5px"
>
<div>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1627022120/Croma%20Assets/Communication/Mobiles/Images/240335_4_u216pr.png/mxw_1440,f_auto"
title="Modern Noise Red Checks Shirts-Full Bewakoof"
alt="Shop Modern Noise Red Checks Shirts-Full"
width="100%"
class="gvproductThumbImagegv"
/>
</div>
</div>
</div>
</div>
<div
style="
position: relative;
text-align: center;
margin-top: 10px;
margin-right: 20px;
"
>
<i class="arrow down"></i>
</div>
</div>
</div>
<div class="gvmiddlemainBoxgv">
<img
id="gvmainImggv"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1627022121/Croma%20Assets/Communication/Mobiles/Images/240335_6_ospqym.png/mxw_1440,f_auto"
/>
</div>
<div id="gvCompare">
<span style="margin-left: 4%; margin-top: 5%; margin-right: 5%"
>Compare</span
>
<img
src="https://www.croma.com/assets/images/cts-white.svg"
alt=""
height="25%"
style="margin-top: 4%"
/>
<span
style="
margin-top: 5%;
text-decoration: underline;
margin-left: 1%;
"
>Connect to Store</span
>
<img
src="https://www.croma.com/assets/images/swv-white.svg
"
alt=""
height="25%"
style="margin-top: 4%; margin-left: 4%"
/><span
style="
margin-left: 1%;
margin-top: 5%;
text-decoration: underline;
"
>Shop with Video</span
>
</div>
</div>
<!-- <div id="gvphotoBox">
<div id="gvLeft"></div>
<div id="gvRight"></div>
</div> -->
<div id="gvdetails">
<div>
<h2>OnePlus Nord 2 5G (128GB ROM, 8GB RAM, DN2101, Blue Haze)</h2>
<p style="font-size: 16px; font-family: Gotham, serif">
PRODUCT ID: 229943<span
class="fa fa-star gvchecked"
style="font-size: 23px; margin-left: 5%"
></span>
<span class="fa fa-star gvchecked" style="font-size: 23px"></span>
<span class="fa fa-star gvchecked" style="font-size: 23px"></span>
<span class="fa fa-star gvchecked" style="font-size: 23px"></span>
<span class="fa fa-star gvchecked" style="font-size: 23px"></span>
</p>
</div>
<div id="gvPrice">
<div>
<h2 style="text-decoration: Gotham, serif; font-size: 22px">
₹29,999.00
</h2>
</div>
<div></div>
<div><p>(Inclusive of all taxes)</p></div>
</div>
<h4>
From ₹2,777/mo.<a
href=""
style="
color: #00c09e;
text-decoration: underline;
font-weight: 700;
font-size: 18px;
margin-left: 1%;
"
>EMI options</a
>
</h4>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://www.croma.com/assets/images/extra-savings-white.png/mxw_1440,f_auto"
alt=""
height="3%"
/>
<b style="margin-left: 1%; font-size: 22px"
>Extra Savings (4 Offers)</b
>
<hr style="width: 85%; margin-left: 0%" />
<input
type="checkbox"
id="gvCheck"
style="width: 3%; height: 3%; color: black; border-radius: 5px"
/>
<span
>Shop worth Rs.5000/- and Get Rs.500 off on on Boat products worth
Rs.999 or above Check here</span
>
<br />
<br />
<input
type="checkbox"
id="gvCheck"
style="width: 3%; height: 3%; color: black; border-radius: 5px"
/>
<span
>Shop worth Rs.10,000/- and Get Rs.1000/- off on Boat products worth
Rs.1999 or above Check here</span
>
<br />
<p
style="
line-height: 20px;
font-size: 17px;
font-family: Gotham, serif;
font-weight: 400;
"
>
6 months No Cost EMI & cashback of Rs.5,000 on ICICI Bank, SBI &
Kotak Bank credit cards. Cashback will be posted in Customer account
within 120 days from the last date of the transaction month on a
best effort basis to all open and active card members accounts.
Select offer under “view all offers” segment on payment page to
avail the benefit. T&C Apply”Learn More
</p>
<div id="gvRupay">
<div>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1640096785/Croma%20Assets/CMS/Bank%20Offer%20Logo/rupay_p7kfcd.png/mxw_1440,f_auto"
alt=""
width="50%"
height="100%"
/>
</div>
<div>
<p style="color: white">
10% Cashback upto Rs.1,000 on Rupay Credit card & Debit Card for
cart value above Rs. 5,000. Select the offer from “View all
offers ”on payment page T&C Apply.Learn More
</p>
</div>
</div>
<div id="gvDelivery">
<h3>
Delivery to 263645
<span
style="
color: #00c09e;
text-decoration: underline;
font-weight: 700;
font-size: 18px;
"
>Change</span
>
</h3>
<h3>
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1637828519/Croma%20Assets/UI%20Assets/Standard-Delivery-Black-Theme.svg/mxw_1440,f_auto"
alt=""
width="4%"
height="4%"
/>
<span
style="margin-left: 1%; font-size: 18px; padding-bottom: 20%"
>
Will be delivered by 24 January 2022</span
>
</h3>
</div>
<img
style="margin-bottom: 5%"
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/v1637759131/Croma%20Assets/CMS/Category%20icon/Final%20icon/jvqga6pxejreylrd3jrd.svg/mxw_1440,f_auto"
alt=""
/>
<span style="margin-left: 1%; font-size: 18px"
>Zip Protection Plan</span
>
<hr style="width: 85%; margin-left: 0%" />
<h3>Extended warranty plans starting at ₹3199 (Approx ₹267/mo.)</h3>
<h3 style="font-size: 16px; font-weight: 400">
Extended protection for your device beyond the manufacturer warranty
with coverage against all manufacturing defects.
<span style="color: #00c09e; text-decoration: underline"
>Know More</span
>
</h3>
<div>
<input type="radio" style="width: 5%" />
<span style="font-size: 18px; margin-left: 1%"
>1 Year Extended Warranty-Onsitego</span
>
<span style="margin-left: 40%">₹3199</span>
</div>
<div id="gvButtonbox">
<button id="gvBuy">BUY NOW</button>
<button
onclick="addingItem()"
id="gvAddcart"
style="
margin-left: 3%;
color: white;
background-color: #121212;
border: 1px solid white;
"
>
ADD TO CART
</button>
</div>
<div id="gvNote">
<ul>
<h4>Special Note</h4>
<li>
All deliveries & installations are subject to government
restrictions.
</li>
</ul>
</div>
</div>
</div>
<!-- items feature -->
<div id="gvItemsfeature">
<div class="gvAccordion">
<div class="gvAccordion-item" id="gvFeature1">
<a class="gvAccordian-link" href="#gvFeature1">
Key Features
<i class="fas fa-angle-up" style="font-size: 26px"></i>
<i class="fas fa-angle-down" style="font-size: 26px"></i>
</a>
<div class="gvDetails">
<ul>
<li>16.33 cm (6.43"), FHD+</li>
<li>6GB RAM | 128GB ROM | Android 11</li>
<li>MediaTek Dimensity Octa Core 1200-AI Processor</li>
<li>R: 50MP + 8MP + 2MP | F: 32MP</li>
<li>4500 mAh Lithium Ion Battery</li>
<li>SAR Sensor | Fingerprint Sensor</li>
</ul>
</div>
</div>
<div class="gvAccordion-item" id="gvFeature2">
<a class="gvAccordian-link" href="#gvFeature2">
Specifications
<i class="fas fa-angle-up" style="font-size: 26px"></i>
<i class="fas fa-angle-down" style="font-size: 26px"></i>
</a>
<div class="gvDetails">
<ul>
<h3>Mobile Category</h3>
<li style="font-size: 18px; line-height: 27px">Mobile Type</li>
<li style="font-size: 13px">Android Smartphone</li>
</ul>
<br />
<h3>Manufacturer Details</h3>
<ul>
<li>Brand</li>
<li>
<span style="color: #00c09e; text-decoration: underline"
>OnePlus</span
>
</li>
</ul>
<br />
<h3 style="line-height: 0px">Mobile Form Factor</h3>
<p>Touch</p>
</div>
</div>
<div class="gvAccordion-item" id="gvFeature3">
<a class="gvAccordian-link" href="#gvFeature3">
Overview
<i class="fas fa-angle-up" style="font-size: 26px"></i>
<i class="fas fa-angle-down" style="font-size: 26px"></i>
</a>
<div class="gvDetails">
<ul>
<h3>Why buy OnePlus Nord 2 5G</h3>
<li>
Warp Charge 65 recharges the battery up to a day’s power in
just 15 minutes
</li>
<li>
50 MP AI Triple Camera with OIS having a single front camera
to take classy pictures
</li>
<li>
6.43” Fluid AMOLED Display with 90 Hz refresh rate provides
awesome visuals
</li>
<li>
Dual Stereo Speakers having Haptics 2.0 provides true,
immersive sound
</li>
<li>Sony IMX766 Sensor for stunning pictures</li>
<li>
Octa-Core MediaTek Dimensity 1200-AI Processor lets you
install and run multiple apps
</li>
</ul>
<br />
<p style="line-height: 30px">
Do you want to take your photography experience to a new level?
Then, buy OnePlus Nord 2 5G online, which has a set up of 50 MP
(Mail Camera), 8 MP (Ultra Wide Camera), and 2 MP (Mono Lens).
It lets you capture beautiful pictures with a 50 MP AI triple
camera system having a Sony IMX766 sensor, optical image
stabilization (OIS), and a ton of AI wizardry. Calling the Sony
IMX766 a sensor is a bit misleading. It’s more like a vacuum
that sucks up 56% more light for colorful images, extra
sharpness, and smooth low-light shooting. And it’s at the core
of Nord 2’s main camera. You can use Night Portraits to optimize
lighting, focus, and skin tone to make your nighttime portrait
shots pop with color and clarity. Be a ray of light in the
darkness. Nightscape Ultra helps to paint your photos with vivid
color and contrast in lighting as low as 1 lux (the light of a
single candle). 119 Degree ultra-wide lens on the triple camera
having the extra reach to fit more which you want in the frame.
AI Photo Enhancement can recognize up to 22 different shooting
scenes and helps to optimize color, contrast, and definition to
help you conjure up ultimate image quality. The 32 MP front
camera lets you take Group Shot 2.0 selfies. The camera can
detect and optimize up to 5 faces for selfies that are a bit
less self-centered. Be a more rounded storyteller. 1080p video
can be captured from the main and front cameras simultaneously
with the Dual View Video. Now, create stunning videos that
showcase more of your world.
</p>
<p style="line-height: 30px">
Revel in an exceptional quality smartphone as the OnePlus Nord 2
5G features an amazing design coming with a gorgeous display, a
powerful processor, and a fabulous camera setup. Having 6GB RAM
you can install various applications and run them all together
without disturbing the speed of the phone. Welcome to a new
dimension as this smartphone runs on OxygenOS 11.3 based on the
Android 11 Operating System which ensures smooth performance. It
has an Octa-Core MediaTek Dimensity 1200-AI Processor along with
ARM G77 MC9 GPU that takes operational efficiency to the next
level resulting in a power-packed performance like never before.
It’s an instant upgrade to pretty much everything. Shoot
clearer, higher-quality photos, and videos. Game faster. Maybe
even win more. Stream more cinema-like experiences. The
possibilities are limitless. It also has the X-axis linear motor
which ensures efficient functionality. It also has a dual
nano-SIM slot. It is having a number of sensors like an
In-display fingerprint sensor, Accelerometer, Electronic
compass, Gyroscope, Ambient light sensor, SAR Sensor, Proximity
sensor, Sensor core. It also has Gestures and on-screen
navigation support.
</p>
</div>
</div>
<div class="gvAccordion-item" id="gvFeature4">
<a class="gvAccordian-link" href="#gvFeature4">
Review
<i class="fas fa-angle-up" style="font-size: 26px"></i>
<i class="fas fa-angle-down" style="font-size: 26px"></i>
</a>
<div class="gvDetails">
<div style="display: flex">
<div class="gvReview"><h3>Customer Reviews(11)</h3></div>
<div class="gvReview"><h3>Expert Reviews()26</h3></div>
<div class="gvReview"><h3>External User Reviews</h3></div>
<div class="gvReview"><h3>Write a Review</h3></div>
</div>
<div class="gvReviewdetails">
<div class="gvImgreview">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/f_auto,q_auto,d_Croma%20Assets:no-product-image.jpg/Croma%20Assets/UI%20Assets/profile-avatar.png/mxw_1440,f_auto"
alt=""
width="30%"
height="100%"
/>
</div>
<div class="gvImgright">
<h3>Yadi Reddy</h3>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
(5.0) | 14 September 2021
<h3>Nice</h3>
</div>
</div>
<hr />
<div class="gvReviewdetails">
<div class="gvImgreview">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/f_auto,q_auto,d_Croma%20Assets:no-product-image.jpg/Croma%20Assets/UI%20Assets/profile-avatar.png/mxw_1440,f_auto"
alt=""
width="30%"
height="100%"
/>
</div>
<div class="gvImgright">
<h3>Yadi Reddy</h3>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
(5.0) | 14 September 2021
<h3>Nice</h3>
</div>
</div>
<hr />
<div class="gvReviewdetails">
<div class="gvImgreview">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/f_auto,q_auto,d_Croma%20Assets:no-product-image.jpg/Croma%20Assets/UI%20Assets/profile-avatar.png/mxw_1440,f_auto"
alt=""
width="30%"
height="100%"
/>
</div>
<div class="gvImgright">
<h3>Yadi Reddy</h3>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
(5.0) | 14 September 2021
<h3>Nice</h3>
</div>
</div>
<hr />
<div class="gvReviewdetails">
<div class="gvImgreview">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/f_auto,q_auto,d_Croma%20Assets:no-product-image.jpg/Croma%20Assets/UI%20Assets/profile-avatar.png/mxw_1440,f_auto"
alt=""
width="30%"
height="100%"
/>
</div>
<div class="gvImgright">
<h3>Yadi Reddy</h3>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
(5.0) | 14 September 2021
<h3>Nice</h3>
</div>
</div>
<hr />
<div class="gvReviewdetails">
<div class="gvImgreview">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/f_auto,q_auto,d_Croma%20Assets:no-product-image.jpg/Croma%20Assets/UI%20Assets/profile-avatar.png/mxw_1440,f_auto"
alt=""
width="30%"
height="100%"
/>
</div>
<div class="gvImgright">
<h3>Yadi Reddy</h3>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
(5.0) | 14 September 2021
<h3>Nice</h3>
</div>
</div>
<hr />
<div class="gvReviewdetails">
<div class="gvImgreview">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/f_auto,q_auto,d_Croma%20Assets:no-product-image.jpg/Croma%20Assets/UI%20Assets/profile-avatar.png/mxw_1440,f_auto"
alt=""
width="30%"
height="100%"
/>
</div>
<div class="gvImgright">
<h3>Yadi Reddy</h3>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
(5.0) | 14 September 2021
<h3>Nice</h3>
</div>
</div>
<hr />
<div class="gvReviewdetails">
<div class="gvImgreview">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/f_auto,q_auto,d_Croma%20Assets:no-product-image.jpg/Croma%20Assets/UI%20Assets/profile-avatar.png/mxw_1440,f_auto"
alt=""
width="30%"
height="100%"
/>
</div>
<div class="gvImgright">
<h3>Yadi Reddy</h3>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
(5.0) | 14 September 2021
<h3>Nice</h3>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Accessories for your product -->
<div id="gvAccessoriesbox">
<div id="gvHeading"><h2>Accessories for your product</h2></div>
<div id="gvaccBox">
<!-- Flickity HTML init -->
<div class="carousel" data-flickity='{ "contain": true }'>
<div class="carousel-cell">
<div class="popular_products">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1605265226/Croma%20Assets/Communication/Mobiles%20Accessories/Images/9002842456094.png/mxw_1440,f_auto"
alt="iphone 13"
/>
<p>Hyphen TPU Back Case For iPhone 12 Mini (Flexible...</p>
<p>₹499.00</p>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span class="fa fa-star" style="font-size: 20px"></span>
<hr />
<i
class="fa fa-shopping-cart"
style="font-size: 24px; color: #00c09e"
></i>
<button
class="gvIcon"
style="
background-color: #121212;
color: #00c09e;
border: none;
"
>
Add to cart
</button>
</div>
</div>
<div class="carousel-cell">
<div class="popular_products">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1605262175/Croma%20Assets/Communication/Chargers%20and%20Batteries/Images/9001905291294.png/mxw_1440,f_auto"
alt="iphone 13"
/>
<p>Apple 20 Watt USB-C Power Adapter...</p>
<p>₹1,900.00</p>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<hr />
<i
class="fa fa-shopping-cart"
style="font-size: 24px; color: #00c09e"
></i>
<button
class="gvIcon"
style="
background-color: #121212;
color: #00c09e;
border: none;
"
>
Add to cart
</button>
</div>
</div>
<div class="carousel-cell">
<div class="popular_products">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1606484181/Croma%20Assets/Communication/Mobiles%20Accessories/Images/9000615477278.png/mxw_1440,f_auto"
alt="OnePlus Nord 2"
/>
<p>Hyphen Tempered Glass Screen Protector For...</p>
<p>₹499.00</p>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span class="fa fa-star" style="font-size: 20px"></span>
<span class="fa fa-star" style="font-size: 20px"></span>
<hr />
<i
class="fa fa-shopping-cart"
style="font-size: 24px; color: #00c09e"
></i>
<button
class="gvIcon"
style="
background-color: #121212;
color: #00c09e;
border: none;
"
>
Add to cart
</button>
</div>
</div>
<div class="carousel-cell">
<div class="popular_products">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1605337274/Croma%20Assets/Entertainment/Home%20Theatres%20and%20Audio%20Systems/Images/8992903462942.png/mxw_1440,f_auto"
alt="iphone 13"
/>
<p>Apple 1.2 Meter Lightning to 3.5mm Stereo Audio Au...</p>
<p>₹3,500.00</p>
<span class="fa fa-star" style="font-size: 20px"></span>
<span class="fa fa-star" style="font-size: 20px"></span>
<span class="fa fa-star" style="font-size: 20px"></span>
<span class="fa fa-star" style="font-size: 20px"></span>
<span class="fa fa-star" style="font-size: 20px"></span>
<hr />
<i
class="fa fa-shopping-cart"
style="font-size: 24px; color: #00c09e"
></i>
<button
class="gvIcon"
style="
background-color: #121212;
color: #00c09e;
border: none;
"
>
Add to cart
</button>
</div>
</div>
<div class="carousel-cell">
<div class="popular_products">
<img
src="https://d2d22nphq0yz8t.cloudfront.net/88e6cc4b-eaa1-4053-af65-563d88ba8b26/https://media.croma.com/image/upload/h_300,w_300/v1605339211/Croma%20Assets/Miscellanous/Cables%20and%20Connectors/Images/8992904347678.png/mxw_1440,f_auto"
alt="iphone 13"
/>
<p>Apple 0.5 Meter Lightning to USB 2.0 Multi Utility...</p>
<p>₹1,800.00</p>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span
class="fa fa-star gvchecked"
style="font-size: 20px"
></span>
<span class="fa fa-star" style="font-size: 20px"></span>
<hr />
<i
class="fa fa-shopping-cart"
style="font-size: 24px; color: #00c09e"