-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobiles.html
1714 lines (1407 loc) · 96.7 KB
/
mobiles.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>E-Vendors/Mobiles</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="furniture.css">
</head>
<body>
<!--nav-->
<nav class="navbar navbar-default navbar-fixed-top" style="background: rgb(255,255,255);">
<div class="container-fluid ">
<div class="row">
<div class="col-md-1">
<!--TITLE-->
<div class="navbar-header">
<a href="#" class="navbar-brand" >
<button type="button" class="btn btn-responsive" data-toggle="collapse" data-target="#box" id="btn" style="margin-top: 50px;">
<h4 style="color: #ffffff;display: inline-block;position: absolute;top: 60px;left: 90px;"> E-Vendors</h4><div class="collapse " id="box">
<a href="cart.html" class="navbar-brand" id="my"><span class=" glyphicon glyphicon-shopping-cart"></span> cart </a>
</div>
</button> </a>
</div>
</div><br>
</div>
</div>
<!--front topic & login-->
<div class="container" style=" background: #43c7ba;;width: 100%;">
<div class="row" style=" display: flex;justify-content: space-between; align-items: center;color: rgba(51, 51, 48, 0.842); ">
<!--1 st page-->
<div class="col-xs-2">
<a href="index.html" style="color: rgb(255, 255, 255);" >
<span class="glyphicon glyphicon-arrow-left"></span>
</a>
</div>
<!--head-->
<div class="col-xs-5">
<h5 style="color: rgb(255, 255, 255);">Mobile Phones</h5>
</div>
<!--search bar-->
<div class="col-xs-2" >
<a href="search.html" style="text-decoration: none;color: rgb(255, 255, 255);">
<span class="glyphicon glyphicon-search"></span>
</a>
</div>
<!--log in-->
<div class="col-xs-2">
<a href="login.html" style="color: rgb(255, 255, 255)">
<span class="glyphicon glyphicon-log-in"></span>
</a>
</div>
</div>
</div>
</nav>
<div class="container" style="margin-top: 180px;">
<div class="row" style="display:flex;align-items: center;justify-content: space-between;">
<a href="#" style="text-decoration: none;">
<div class="col-xs-2" style=" display: flex;align-items: center;justify-content: center;border-color: rgb(218, 211, 211); border-style:solid;
border-width: 0.02px;border-radius: 50%;width: 60px;height: 60px; background: rgb(255, 218, 6); ">
<h6 style="color:rgb(2, 2, 2)"> <strong> rea*me</strong></h6>
</div></a>
<a href="#" style="text-decoration: none;">
<div class="col-xs-2" style=" display: flex;align-items: center;justify-content: center;border-color: rgb(218, 211, 211); border-style:solid;
border-width: 0.02px;border-radius: 50%;width: 60px;height: 60px; background: rgb(238, 255, 4); ">
<h5 style="color:rgb(0, 0, 0); "> <strong>PO*O</strong></h5>
</div></a>
<a href="#" style="text-decoration: none;">
<div class="col-xs-2" style=" display: flex;align-items: center;justify-content: center;border-color: rgb(218, 211, 211); border-style:solid;
border-width: 0.02px;border-radius: 50%;width: 63px;height: 64px; background: rgb(255, 77, 6); ">
<h6 style="color: rgb(255, 77, 6);border-radius: 35%;width:23px;height: 21px;background-color: white;
display: flex;align-items: center;justify-content: center;"> <strong>M*</strong></h6>
</div></a>
<a href="#" style="text-decoration: none;">
<div class="col-xs-2" style=" display: flex;align-items: center;justify-content: center;border-color: rgb(218, 211, 211); border-style:solid;
border-width: 0.02px;border-radius: 50%;width: 63px;height: 64px; background: rgb(88, 54, 211); ">
<h6 style="color:rgb(255, 255, 255); "> <strong>VI*O</strong></h6>
</div></a>
</div>
<br>
<div class="row" style="display:flex;align-items: center;justify-content: space-between;">
<a href="#" style="text-decoration: none;">
<div class="col-xs-2" style=" display: flex;align-items: center;justify-content: center;border-color: rgb(218, 211, 211); border-style:solid;
border-width: 0.02px;border-radius: 50%;width: 60px;height: 60px; background: rgb(11, 4, 104); ">
<h6 style="color:rgb(255, 255, 255); "> <strong> SAM*UNG</strong></h6>
</div></a>
<a href="#" style="text-decoration: none;">
<div class="col-xs-2" style=" display: flex;align-items: center;justify-content: center;border-color: rgb(218, 211, 211); border-style:solid;
border-width: 0.02px;border-radius: 50%;width: 60px;height: 60px; background: rgb(14, 131, 4); ">
<h6 style="color:rgb(255, 255, 255); "> <strong> OPP*</strong></h6>
</div></a>
<a href="#" style="text-decoration: none;">
<div class="col-xs-2" style=" display: flex;align-items: center;justify-content: center;border-color: rgb(218, 211, 211); border-style:solid;
border-width: 0.02px;border-radius: 50%;width: 60px;height: 60px; background: rgb(3, 3, 3); ">
<h6 style="color:rgb(255, 255, 255); "> <strong>APP*E</strong></h6>
</div></a>
<a href="#" style="text-decoration: none;">
<div class="col-xs-2" style=" display: flex;align-items: center;justify-content: center;border-color: rgb(218, 211, 211); border-style:solid;
border-width: 0.02px;border-radius: 50%;width: 63px;height: 64px; background: rgb(255, 255, 255); ">
<h6 style="color:rgb(13, 13, 14); "> <strong> PIX*L</strong></h6>
</div></a>
</div>
</div>
<br>
<!--slide 1-->
<div class="container" >
<div class="row">
<div id="myCarousel" class="carousel slide " data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
<li data-target="#myCarousel" data-slide-to="4"></li>
<li data-target="#myCarousel" data-slide-to="5"></li>
</ol>
<div class="carousel-inner" >
<div class="item active d-block 100 " style=" height: 27vh; ">
<div class="big-box" style=" background: linear-gradient(to bottom,rgb(255, 210, 183), rgb(250, 182, 118));height: 27vh;width: 100%;">
<a href="#" style="text-decoration: none;">
<img src="images/PngItem_291396.png" alt="Los Angeles" class=" img-responsive" style="height:22vh;width: 23%;position: absolute;top: 10px;left: 230px;" >
<div class="box" style="background-color: rgb(230, 230, 28);width: 60px;height: 20px;position:absolute;bottom: 135px;left: 20px;display: flex;align-items: center;justify-content: center;">
<h5 style="color: rgb(7, 7, 7);" > realm* </h5></div>
<h5 style="color: rgb(0, 0, 0);position:absolute;bottom: 80px;left: 20px;"> realm* C35 <br>
<strong>From RS.10,999</strong></h5>
<h6 style="color: rgb(2, 2, 2);position:absolute;bottom: 60px;left: 20px;"> 6.6" FHD+ | 50MP Triple Cam</h6>
<button type="button" class="btn btn-responsive" style=" position: absolute; bottom: 40px;left: 17px;background-color: rgb(86, 5, 235);
width: 126px;height: 22px;display:flex;justify-content:center; align-items: center;border-radius:7px" ><h6 style="color: rgb(245, 245, 255);">
Pay Only RS.1,834/M </h6> </button>
</a>
</div>
</div>
<div class="item d-block 100" style="height: 27vh;">
<div class="big-box" style=" background: linear-gradient(to right,#eff7f6,#f2b5d4);height: 27vh;width: 100%;">
<a href="#" style="text-decoration: none;">
<img src="images/PngItem_291396.png" alt="Los Angeles" class=" img-responsive" style="height:22vh;width: 23%;position: absolute;top: 10px;left: 230px;" >
<div class="box" style="background-color: rgb(98, 1, 224);width: 60px;height: 20px;position:absolute;bottom: 135px;left: 20px;display: flex;align-items: center;justify-content: center;">
<h5 style="color: rgb(255, 251, 251);" > viv* </h5></div>
<h5 style="color: rgb(0, 0, 0);position:absolute;bottom: 80px;left: 20px;"> viv* T1 44W <br>
<strong>From RS.13,499</strong></h5>
<h6 style="color: rgb(5, 5, 5);position:absolute;bottom: 60px;left: 20px;"> In-Screen Fingerprint | AMOLED</h6>
<button type="button" class="btn btn-responsive" style=" position: absolute; bottom: 40px;left: 17px;background-color: rgb(86, 5, 235);
width: 126px;height: 22px;display:flex;justify-content:center; align-items: center;border-radius:7px" ><h6 style="color: rgb(245, 245, 255);">
Pay Only RS.2,250/M </h6> </button>
</a>
</div>
</div>
<div class="item d-block 100" style=" height: 27vh;">
<div class="big-box" style=" background: linear-gradient(to bottom,rgb(174, 211, 218), rgb(247, 245, 243));height: 27vh;width: 100%;">
<a href="#" style="text-decoration: none;">
<img src="images/PngItem_291396.png" alt="Los Angeles" class=" img-responsive" style="height:22vh;width: 23%;position: absolute;top: 10px;left: 230px;" >
<h4 style="color: rgb(6, 179, 6);position:absolute;bottom: 130px;left: 20px;" > <strong>OPP*</strong> </h4>
<h5 style="color: rgb(7, 7, 7);position:absolute;bottom: 90px;left: 20px;"> OPP* K10 <br>
<strong>From RS.12,990</strong></h5>
<h6 style="color: rgb(3, 3, 3);position:absolute;bottom: 70px;left: 20px;"> 90Hz FHD+ | 50MP Triple Cam</h6>
<button type="button" class="btn btn-responsive" style=" position: absolute; bottom: 40px;left: 19px;background-color: rgb(86, 5, 235);
width: 126px;height: 22px;display:flex;justify-content:center; align-items: center;border-radius:7px" ><h6 style="color: rgb(245, 245, 255);">
Pay Only RS.2,165/M </h6> </button>
</a>
</div>
</div>
<div class="item d-block 100" style=" height: 27vh;">
<div class="big-box" style=" background: linear-gradient(to top,rgb(255, 210, 183), rgb(250, 182, 118));height: 27vh;width: 100%;">
<a href="#" style="text-decoration: none;">
<img src="images/PngItem_291396.png" alt="Los Angeles" class=" img-responsive" style="height:22vh;width: 23%;position: absolute;top: 10px;left: 250px;" >
<h4 style="color: rgb(8, 8, 8);position:absolute;bottom: 130px;left: 20px;" > <strong> SAMSU*G </strong></h4>
<h5 style="color: rgb(7, 7, 7);position:absolute;bottom: 90px;left: 20px;"> Samsu*g F23 5G <br>
<strong>From RS.12,990</strong></h5>
<h6 style="color: rgb(7, 7, 7);position:absolute;bottom: 70px;left: 20px;"> Upgrade to Snapdragon 750G Processor</h6>
<button type="button" class="btn btn-responsive" style=" position: absolute; bottom: 40px;left: 19px;background-color: rgb(86, 5, 235);
width: 126px;height: 22px;display:flex;justify-content:center; align-items: center;border-radius:7px" ><h6 style="color: rgb(245, 245, 255);">
Pay Only RS.2,167/M </h6> </button>
</a>
</div>
</div>
<div class="item d-block 100" style=" height: 27vh;">
<div class="big-box" style=" background-color: rgb(233, 219, 219);height: 27vh;width: 100%;">
<a href="#" style="text-decoration: none;">
<img src="images/PngItem_291396.png" alt="Los Angeles" class=" img-responsive" style="height:22vh;width: 23%;position: absolute;top: 10px;left: 250px;">
<h5 style="color: rgb(8, 8, 8); position:absolute;bottom: 130px;left: 20px;"> <strong>NOTHI*G(R)</strong> </h5>
<h5 style="color: rgb(7, 7, 7);position:absolute;bottom: 90px;left: 20px;"> Nothing Phone (1) 5G
<br><strong>From RS.26,999</strong></h5>
<h6 style="color: rgb(19, 18, 18);position:absolute;bottom: 70px;left: 20px;"> Upgrade to Android 13 | 50MP Dual Cam</h6>
<button type="button" class="btn btn-responsive" style=" position: absolute; bottom: 40px;left: 19px;background-color: rgb(86, 5, 235);
width: 126px;height: 22px;display:flex;justify-content:center; align-items: center;border-radius:7px" ><h6 style="color: rgb(245, 245, 255);">
Pay Only RS.4,500/M </h6> </button>
</a>
</div>
</div>
<div class="item d-block 100" style=" height: 27vh;">
<div class="big-box" style=" background: linear-gradient(to bottom,rgb(174, 211, 218), rgb(247, 245, 243));height: 27vh;width: 100%;">
<a href="#" style="text-decoration: none;">
<img src="images/PngItem_291396.png" alt="Los Angeles" class=" img-responsive" style="height:22vh;width: 23%;position: absolute;top: 10px;left: 230px;" >
<h4 style="color: rgb(12, 12, 12); position:absolute;bottom: 130px;left: 20px;"> <strong> Pix*l </strong> </h4>
<h5 style="color: rgb(14, 13, 13);position:absolute;bottom: 90px;left: 20px;"> Pixel 7 Series <br>
<strong>From RS.48,999</strong></h5>
<h6 style="color: rgb(12, 12, 12);position:absolute;bottom: 70px;left: 20px;"> Flagship Pixel at Lowest Price</h6>
<button type="button" class="btn btn-responsive" style=" position: absolute; bottom: 40px;left: 19px;background-color: rgb(86, 5, 235);
width: 126px;height: 22px;display:flex;justify-content:center; align-items: center;border-radius:7px" ><h6 style="color: rgb(245, 245, 255);">
Pay Only RS.8,167/M </h6> </button>
</a>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev"></a>
<a class="right carousel-control" href="#myCarousel" data-slide="next"></a>
</div>
</div>
</div>
<br>
<!--(3) IMAGEs-->
<div class="container ">
<div class="row" style="display: flex;align-items: center;justify-content: space-between;">
<div class="col-xs-4">
<div class="box" style="border-radius: 6px; height: 70px;width: 90px;
display: flex; align-items: center;justify-content: center; background: rgb(194, 241, 255); ">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 10vh;width: 40%;position: absolute;top: 12px;">
<div class="box2" style="background-color: rgb(255, 250, 251); width:90px;height:50px;position: absolute;top:72px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
real*e c33 </h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; "> <strong>From RS.7,999</strong></h6>
</a>
</div>
</div>
</div>
<div class="col-xs-4">
<div class="box" style="border-radius: 6px; height: 70px;width: 90px;
display: flex; align-items: center;justify-content: center; background: rgb(194, 241, 255); ">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 10vh;width: 40%;position: absolute;top: 12px;">
<div class="box2" style="background-color: rgb(255, 250, 251); width:90px;height:50px;position: absolute;top:72px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
Moto G62 </h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; "> <strong>Just RS.15,999</strong></h6>
</a>
</div>
</div>
</div>
<div class="col-xs-4">
<div class="box" style="border-radius: 6px; height: 70px;width: 90px;
display: flex; align-items: center;justify-content: center; background: rgb(194, 241, 255); ">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 10vh;width: 40%;position: absolute;top: 12px;">
<div class="box2" style="background-color: rgb(255, 250, 251); width:90px;height:50px;position: absolute;top:72px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
real*e 91 Sport </h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; "> <strong>From RS.7,499</strong></h6>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<!--pixel 2 images-->
<div class="container">
<div class="row">
<a href="#" style="text-decoration: none;">
<div class="col-xs-6">
<div class="box" style="border-radius: 6px; height: 24vh;width: 100%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); ">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 16vh;width: 30%;position: absolute;
bottom: 60px;left: 15px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 95px;top:0.2px"><strong>Pixe*</strong></h6>
<h5 style=" color: rgb(41, 40, 40); position: absolute;left: 75px;top:26px" >
<strong> Googl* <br> Pixel 6a </strong> </h5>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 75px;top: 66px; "><strong>From <br> RS.27,999</strong></h6>
<h6 style=" color: rgb(13, 13, 14); position: absolute;left: 25px;top: 106px; ">
Googl* Sensor <br> All-day Power <br> Pixel Camera
</h6>
</div>
</div>
<div class="col-xs-6">
<div class="box" style="border-radius: 6px; height: 24vh;width: 100%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); ">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 16vh;width: 30%;position: absolute;
bottom: 60px;left: 15px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 95px;top:0.2px"><strong> Pixe*</strong></h6>
<h5 style=" color: rgb(41, 40, 40); position: absolute;left: 75px;top:26px" >
<strong> Googl* <br> Pixel 7Pro </strong> </h5>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 75px;top: 66px; "><strong>From <br> RS.68,999*</strong></h6>
<h6 style=" color: rgb(13, 13, 14); position: absolute;left: 25px;top: 106px; ">
Advanced-Camera<br> Pro Googl* Phone <br> Googl* Sensor
</h6>
</div>
</div>
</a>
</div>
</div>
<br>
<!--(4) images2-->
<div class="container ">
<h5 style="color:rgb(238, 28, 63);display: flex;align-items: center;justify-content:center;"><strong>Top Picks of the Sale</strong></h5>
<div class="row">
<div class="col-xs-6">
<div class="box" style="border-radius: 12px; height: 220px;width: 140px; border-color: rgb(255, 139, 203); border-style:solid;
border-width: 0.02px; display: flex; align-items: center;justify-content: center; background: rgb(255, 255, 255); ">
<div class="box2" style="border-radius: 5px;background-color: pink; width:120px;height:40px;position: absolute;top:0.02px;">
<h6 style=" color: rgb(236, 17, 53); display: flex; align-items: center;justify-content: center;margin-left: 3px;margin-right: 2px;">
#Latest Fom <br> Samsu*g</h6>
</div>
<img src="images/101-1012653_samsung-mobile-phone-png-transparent-images-samsung-galaxy.png" class="img-responsive" alt="" style="height: 14vh;width: 50%;position: absolute;top: 50px; ">
<div class="box2" style="background-color: rgb(255, 255, 255); width:90px;height:50px;position: absolute;top:132px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
Galaxy F04 </h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
<small>8GB RAM | Stylish Gloss Design </small></h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; "> <strong>From RS.7,499*</strong></h6>
</a>
</div>
</div>
</div>
<div class="col-xs-6">
<div class="box" style="border-radius: 12px; height: 220px;width: 140px; border-color: rgb(255, 139, 203); border-style:solid;
border-width: 0.02px; display: flex; align-items: center;justify-content: center; background: rgb(255, 255, 255); ">
<div class="box2" style="border-radius: 5px;background-color: pink; width:120px;height:40px;position: absolute;top:0.02px;">
<h6 style=" color: rgb(236, 17, 53); display: flex; align-items: center;justify-content: center;margin-left: 3px;margin-right: 2px;">
Best Deal on POC* <br> M-Series</h6>
</div>
<img src="images/101-1012653_samsung-mobile-phone-png-transparent-images-samsung-galaxy.png" class="img-responsive" alt="" style="height: 14vh;width: 50%;position: absolute;top: 50px; ">
<div class="box2" style="background-color: rgb(255, 255, 255); width:90px;height:50px;position: absolute;top:132px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
POC* M4 Pro </h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
<small> 6nm Dimmensity 810 | 33w </small></h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; "> <strong>From RS.12,249*</strong></h6>
</a>
</div>
</div>
</div>
</div>
<br>
<!--row 2-->
<div class="row">
<div class="col-xs-6">
<div class="box" style="border-radius: 12px; height: 220px;width: 140px; border-color: rgb(255, 139, 203); border-style:solid;
border-width: 0.02px; display: flex; align-items: center;justify-content: center; background: rgb(255, 255, 255); ">
<div class="box2" style="border-radius: 5px;background-color: pink; width:120px;height:40px;position: absolute;top:0.02px;">
<h6 style=" color: rgb(236, 17, 53); display: flex; align-items: center;justify-content: center;margin-left: 3px;margin-right: 2px;">
First Time on Offer</h6>
</div>
<img src="images/101-1012653_samsung-mobile-phone-png-transparent-images-samsung-galaxy.png" class="img-responsive" alt="" style="height: 14vh;width: 50%;position: absolute;top: 50px; ">
<div class="box2" style="background-color: rgb(255, 255, 255); width:90px;height:50px;position: absolute;top:132px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
Infinix Hot 20 </h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
<small> Big Battery | 90HZ <br>big screen </small></h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center;position: absolute;left: 10px;top: 48px; "> <strong>From RS. 7,999*</strong></h6>
</a>
</div>
</div>
</div>
<div class="col-xs-6">
<div class="box" style="border-radius: 12px; height: 220px;width: 140px; border-color: rgb(255, 139, 203); border-style:solid;
border-width: 0.02px; display: flex; align-items: center;justify-content: center; background: rgb(255, 255, 255); ">
<div class="box2" style="border-radius: 5px;background-color: pink; width:120px;height:40px;position: absolute;top:0.02px;">
<h6 style=" color: rgb(236, 17, 53); display: flex; align-items: center;justify-content: center;margin-left: 3px;margin-right: 2px;">
Best Exchange Offers</h6>
</div>
<img src="images/101-1012653_samsung-mobile-phone-png-transparent-images-samsung-galaxy.png" class="img-responsive" alt="" style="height: 14vh;width: 50%;position: absolute;top: 50px; ">
<div class="box2" style="background-color: rgb(255, 255, 255); width:90px;height:50px;position: absolute;top:132px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
Galaxy A14</h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; ">
<small> Best of 5G Experience </small></h6>
<h6 style=" color: rgb(14, 13, 13); display: flex; align-items: center;justify-content: center; "> <strong>From RS.14,999*</strong></h6>
</a>
</div>
</div>
</div>
</div>
</div>
<br>
<!--2 rows-->
<div class="container">
<h4 >
Upcoming
<font style="color: rgb(255, 35, 35);font-family: cursive;"> Launches</font>
</h4>
<h5>
Introducing New smartPhone Technology
</h5>
<br>
<div class="row">
<div class="col-xs-6">
<img src="images/101-1012653_samsung-mobile-phone-png-transparent-images-samsung-galaxy.png" style="height:14vh;width: 60%;" class="img-responsive" alt="">
</div>
<div class="col-xs-6">
<a href="#" style="text-decoration: none;">
<h5 style="color:rgb(12, 12, 12)"> <strong>OPP* Find N2 Flip</strong></h5>
<h6 style="color:rgb(15, 15, 15)">See More in a Snap </h6>
<h6 style="color:rgb(11, 11, 209)">Launching on 15th Feb</h6>
</a>
</div>
</div>
<br>
<div class="row">
<div class="col-xs-6">
<img src="images/101-1012653_samsung-mobile-phone-png-transparent-images-samsung-galaxy.png" style="height:14vh;width: 60%;" class="img-responsive" alt="">
</div>
<div class="col-xs-6">
<a href="#" style="text-decoration: none;">
<h5 style="color:rgb(12, 12, 12)"> <strong> V27 Series</strong></h5>
<h6 style="color:rgb(15, 15, 15)"> #TheSpotlightPhone </h6>
<h6 style="color:rgb(11, 11, 209)"> Coming Soon</h6>
</a>
</div>
</div>
</div>
<br>
<!--1 image with contents-->
<div class="container" style="background-color: rgb(249, 253, 13);height: 18vh;width: 100%;">
<div class="row" >
<div class="col-xs-7">
<a href="#" style="text-decoration: none;">
<h5 style="color:rgb(15, 15, 15);position: absolute;top: 20px;"><strong>POC* M4 5G</strong></h5>
<h5 style="color:rgb(15, 15, 15);position: absolute;top: 40px;"> <strong> From RS.10,999</strong></h5>
<h6 style="color:rgb(15, 15, 15);position: absolute;top: 60px;"> 90Hz Smart | FHD+</h6>
</a>
</div>
<div class="col-xs-5">
<div class="box" style="border-radius: 5px;background-color: rgb(241, 248, 149);height: 15vh;width:70%;position: absolute;top: 8px;">
<img src="images/PngItem_291396.png" style="height: 12vh;width: 50%;
position: absolute;top: 8px;left: 24px;" class="img-responsive" alt="">
</div>
</div>
</div>
</div>
<br>
<!--realme1 slide 3-->
<div class="container" >
<h5> <strong>Deals From Your Favourite Brands</strong></h5>
<div class="box" style="display:flex;align-items:center;justify-content:space-around;"> <div class="line" style="width: 80px;height: 4px;background-color: rgba(22, 18, 255, 0.932) ;"></div>
<h4 style="background-color: rgba(238, 238, 56, 0.884);height: 24px;width: 80px;display: flex;align-items: center;justify-content: center;
color:rgb(22, 22, 22);">realm*</h4> <div class="line" style="width: 80px;height: 4px;background-color: rgb(76, 0, 255);"></div> </div>
<br>
<h4> <strong>realm* Super9 Series</strong></h4>
<div class="row">
<div id="myCarousel2" class="carousel slide " data-ride="carousel">
<div class="carousel-inner" >
<div class="item active d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px; ">
<strong> realm* 9i 5G</strong> <br>
<small>Dimmensity 810 5G</small></h6>
<h6 style=" color: rgb(39, 17, 240);position: absolute;left: 25px;top: 30px; "> <strong>From RS.13,999</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* 9i </strong> <br>
<small> 6.6" FHD Display</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.13,499</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* 9 </strong> <br>
<small> 108MP Trip cam</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.16,999</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* 9i </strong> <br>
<small> 6.6" FHD Display</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.13,499</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* 9i </strong> <br>
<small> 6.6" FHD Display</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.13,499</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* 9i </strong> <br>
<small> 6.6" FHD Display</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.13,499</strong></h6>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel2" data-slide="prev"></a>
<a class="right carousel-control" href="#myCarousel2" data-slide="next"></a>
</div>
</div>
</div>
<br>
<!--realme2 slide 4-->
<div class="container" >
<h4> <strong>realm* GT Series</strong></h4>
<div class="row">
<div id="myCarousel3" class="carousel slide " data-ride="carousel">
<div class="carousel-inner" >
<div class="item active d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px; ">
<strong> realm* GT 2</strong> <br>
<small>FlagShip Performance:SD 888+</small></h6>
<h6 style=" color: rgb(39, 17, 240);position: absolute;left: 25px;top: 30px; "> <strong>From RS.31,999</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* GT Neo 3 </strong> <br>
<small> Dimmensity 8100</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.36,999</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* GT 2 Pro </strong> <br>
<small> Premium FlagShip :SD 8 Gen 1</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.39,999</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* 9i </strong> <br>
<small> 6.6" FHD Display</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.13,499</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* 9i </strong> <br>
<small> 6.6" FHD Display</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.13,499</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> realm* 9i </strong> <br>
<small> 6.6" FHD Display</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.13,499</strong></h6>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel3" data-slide="prev"></a>
<a class="right carousel-control" href="#myCarousel3" data-slide="next"></a>
</div>
</div>
</div>
<br>
<!--samsung 2 images-->
<div class="container">
<div class="box" style="display:flex;align-items:center;justify-content:space-around;"> <div class="line" style="width: 80px;height: 4px;background-color: rgba(22, 18, 255, 0.932) ;"></div>
<h4 style="
color:rgb(22, 22, 22);"> <strong>SAMSU*G</strong></h4> <div class="line" style="width: 80px;height: 4px;background-color: rgb(76, 0, 255);"></div> </div>
<br>
<div class="row">
<a href="#" style="text-decoration: none;">
<div class="col-xs-6">
<div class="box" style="border-radius: 6px; height: 24vh;width: 100%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); ">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 16vh;width: 30%;position: absolute;
bottom: 60px;left: 15px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 70px;top:0.2px"><strong>SAMSU*G</strong></h6>
<h5 style=" color: rgb(41, 40, 40); position: absolute;left: 73px;top:26px" >
<strong> Samsun* <br> F13 </strong> </h5>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 73px;top: 60px; "><strong>From <br> RS.31,999</strong></h6>
<h6 style=" color: rgb(13, 13, 14); position: absolute;left: 25px;top: 106px; ">
6000mah <br> 6.6" FHD+ <br> 50MP Cam
</h6>
</div>
</div>
<div class="col-xs-6">
<div class="box" style="border-radius: 6px; height: 24vh;width: 100%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); ">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 16vh;width: 30%;position: absolute;
bottom: 60px;left: 15px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 75px;top:0.2px"><strong>SAMSU*G</strong></h6>
<h5 style=" color: rgb(41, 40, 40); position: absolute;left: 73px;top:26px" >
<strong> Samsun* <br> F23 5G </strong> </h5>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 73px;top: 60px; "><strong>From <br> RS.12,999*</strong></h6>
<h6 style=" color: rgb(13, 13, 14); position: absolute;left: 25px;top: 106px; ">
50MP Tiple Cam<br> SD 750G <br> 120Hz FHD+
</h6>
</div>
</div>
</a>
</div>
</div>
<br>
<!--samsung1 slide5-->
<div class="container" >
<div class="row">
<div id="myCarousel4" class="carousel slide " data-ride="carousel">
<div class="carousel-inner" >
<div class="item active d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px; ">
<strong> Samsun* S22+</strong> <br>
<small>Octa Core Processor</small></h6>
<h6 style=" color: rgb(39, 17, 240);position: absolute;left: 25px;top: 30px; "> <strong>From RS.69,999</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> Samsun* Flip3 </strong> <br>
<small> Unfold Your World</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.49,999</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> Samsun* A03</strong> <br>
<small> 5000Mah Battery</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.8,499</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> Samsun* A23 </strong> <br>
<small> 5000Mah Battery </small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.18,499</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> Samsun* A33 5G </strong> <br>
<small> Super AMOLED</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.28,499</strong></h6>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> Samsun* A53 5G </strong> <br>
<small> 5000Mah Battery</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong>From RS.31,999</strong></h6>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel4" data-slide="prev"></a>
<a class="right carousel-control" href="#myCarousel4" data-slide="next"></a>
</div>
</div>
</div>
<br>
<!--poco1 slide 6-->
<div class="container" >
<div class="box" style="display:flex;align-items:center;justify-content:space-around;"> <div class="line" style="width: 80px;height: 4px;background-color: rgba(22, 18, 255, 0.932) ;"></div>
<h4 style="background-color: rgba(202, 255, 10, 0.884);height: 34px;width: 60px;display: flex;align-items: center;justify-content: center;
color:rgb(22, 22, 22);"> POC*</h4> <div class="line" style="width: 80px;height: 4px;background-color: rgb(76, 0, 255);"></div> </div>
<div class="row">
<div id="myCarousel5" class="carousel slide " data-ride="carousel">
<div class="carousel-inner" >
<div class="item active d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px; ">
<strong> POC* C31</strong> <br>
<small> AI Face Unlock</small></h6>
<h6 style=" color: rgb(39, 17, 240);position: absolute;left: 25px;top: 30px; "> <strong> Shop Now</strong></h6>
</a>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> POC* M4 Pro 5G </strong> <br>
<small> FHD+ Display</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong> Shop Now</strong></h6>
</a>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> POC* M4 Pro AMOLED </strong> <br>
<small> FHD+ AMOLED Display</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong> Shop Now</strong></h6>
</a>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> POC* M4 5G </strong> <br>
<small> 90Hz Smart Refresh Rate</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong> Shop Now</strong></h6>
</a>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> POC* M4 Pro 5G </strong> <br>
<small> 67 Sonic Charge </small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong> Shop Now</strong></h6>
</a>
</div>
</div>
</div>
<div class="item d-block 100" style=" height: 28vh;background: rgb(255, 255, 255); ">
<div class="box" style="border-radius: 6px; height: 28vh;width: 84%;
display: flex; align-items: center;justify-content: center; background: rgb(202, 236, 245); position: absolute;left: 25px;">
<img src="images/PngItem_291396.png" class="img-responsive" alt="" style="height: 20vh;width: 30%;position: absolute;top: 15px;">
<div class="box2" style="background-color:rgb(240, 250, 241); width:256px;height:65px;position: absolute;top:118px;border-radius: 5px;">
<a href="#" style="text-decoration: none;">
<h6 style=" color: rgb(41, 40, 40); position: absolute;left: 25px;">
<strong> POC* M5 </strong> <br>
<small> G99 Processor</small> </h6>
<h6 style=" color: rgb(33, 8, 255); position: absolute;left: 25px;top: 30px; "><strong> Shop Now</strong></h6>