-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2296 lines (2058 loc) · 149 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
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>
<link rel="stylesheet" href="login.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style1.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style1.css">
<link rel="stylesheet" href="bootstrap.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/5f59ca6ad3.js" crossorigin="anonymous"></script>
<script src="index.js"></script>
<script src="display.js"></script>
<script src="search.js"></script>
</head>
<body>
<!--Login Form-------------------------------------->
<div class="login-form-container" id="loginForm" style="background-image: url('electro-bg.jpg'); width:100vw">
<img src="logo.png" alt="logo"/>
<div class="container" style="margin-top: 100px;">
<div class="heading">Sign In</div>
<div class="form" id="formEl">
<input class="input" id="email" placeholder="E-mail or username">
<input class="input" type="password" id="password" placeholder="Password">
<button class="login-button" onclick="onsignIn()" id="loginBtn">Login</button>
</div>
</div>
</div>
<div id="appContainer" >
<!----header------------------------------>
<div class="navbar navbar-expand-lg bg-light d-flex justify-content-around navBAR1 stiCKY ">
<a onclick="onHome()" class="navbar-brand col-md-6 col-lg-3 "><img src="logo.png" alt=""></a>
<button class="navbar-toggler " type="button" data-bs-toggle="collapse" data-bs-target="#menu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse col-md-6 col-lg-3" id="menu">
<ul class="navbar-nav align-items-center ">
<li class="nav-item dropdown"><a class="nav-link dropdown-toggle anchor" href="#" data-bs-toggle="dropdown">Categories</a>
<div class="dropdown-menu megaMENU">
<ul>
<li><a class="dropdown-item" onclick="onTv()">TV</a></li>
<li><a class="dropdown-item" onclick="onLaptop()">Laptops</a></li>
<li><a class="dropdown-item" onclick="onPendrives()">Pendrives</a></li>
<li><a class="dropdown-item" onclick="onHardrives()">Hard Drives </a></li>
</ul>
<ul>
<li><a class="dropdown-item" onclick="onCameras()">Cameras</a></li>
<li><a class="dropdown-item" onclick="onlens()">Lences</a></li>
<li><a class="dropdown-item" onclick="onCameraAccessries()">Camera Accessories</a></li>
</ul>
<ul>
<li><a class="dropdown-item" onclick="onSmartphones()">Smart Phones</a></li>
<li><a class="dropdown-item" onclick="onGames()">Video Games </a></li>
<li><a class="dropdown-item" onclick="onTablets()">Tablets</a></li>
</ul>
</div>
</li>
<li class="nav-item"><a class="nav-link anchor" onclick="onAboutUs()">About Us</a></li>
<li class="nav-item"><a class="nav-link anchor" href="#">Chat Bot</a></li>
</ul>
</div>
<div>
<ul class="navbar-nav col-md-12 col-lg-3 email mr-auto " style="margin-left:auto; display: flex; flex-direction: column; align-items: flex-end; ">
<li style="display: flex; flex-direction: row-reverse; justify-content:center; align-items: center; "><img style="height: 30px;" src="profileImg.png" alt="profile"/>
<p id="userDetails" style="margin-top: 10px; margin-right:10px;"></p></li>
<button class="btn btn-primary" style="font-size: 12px;" onclick="onLogout()">Logout</button>
</ul>
</div>
</div>
<!--navbar2-->
<nav class="navbar ">
<div class=" container-fluid row bg-warning" >
<div class=" col-lg-3 col-md-6">
<ul class="list-inline meNU" >
<li class="list-inline-item">
<div class="dropdown">
<button class="btn btn-light" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="currentColor" class="bi bi-list" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5"/>
</svg>
</button>
<ul class="dropdown-menu sideBAR">
<li><a class="dropdown-item" onclick="onLaptop()">Laptops & Computers</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" onclick="onSmartphones()">Smartphones</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" onclick="onCameras()">Cameras</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" onclick="onGames()">Video Games & Consoles</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" onclick="onPendrives()">Pendrives</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" onclick="onHardrives()">Hard Drives</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" onclick="onlens()">Lences</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" onclick="onWatches()">Watches</a></li>
<li><hr class="dropdown-divider"></li>
</ul>
</div>
</ul>
</div>
<div class=" col-lg-6 col-md-4">
<div class="d-flex " role="search" id="searchForm" >
<input id="searchInput" class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button onclick="onSearch()" class="btn btn-outline-success" type="submit">Search</button>
</div>
</div>
<div class=" col-lg-3 col-md-2 d-flex justify-content-end">
<a onclick="onCart()"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-shopping-cart-minus" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" /><path d="M12.5 17h-6.5v-14h-2" /><path d="M6 5l14 1l-1 7h-13" /><path d="M16 19h6" /></svg>
</div>
</div>
</nav>
<!--homepage1-->
<div id="subContainer">
<div id="home">
<div id="carouselExampleDark" class="container-fluid carousel carousel-dark slide mb-3">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="10000">
<a onclick="onWatches()"> <img src="image1.jpg" class="d-block w-100 " alt="..."></a>
<div class="carousel-caption d-none d-md-block mb-5 ">
<h2>THE NEW <BR>STANDARD</h2>
<small > FAVORABLE SMARTWATCHER</small>
<h1><span class="lead">UPTO</span>40% OFF </h1>
<button class="btn btn-warning"><a onclick="onWatches()">START BUYING</a></button>
</div>
</div>
<div class="carousel-item" data-bs-interval="2000">
<a onclick="onSmartphones()"><img src="homeslide2.jpg" class="d-block w-100" alt="..."></a>
<div class="carousel-caption d-none d-md-block mb-5 ">
<h2>THE TIMEPICERS THAT <BR>MAKE A STATEMENT</h2>
<h1><span class="lead">UPTO</span>40% OFF </h1>
<button class="btn btn-warning"><a onclick="onSmartphones()">START BUYING</a></button>
</div>
</div>
<div class="carousel-item">
<a onclick="onSpeakers()"><img src="homslide3.jpg" class="d-block w-100" alt="..."></a>
<div class="carousel-caption d-none d-md-block mb-5">
<h2>Shop To Get <BR>What You Love</h2>
<h1><span class="lead">UPTO</span>40% OFF </h1>
<button class="btn btn-warning"> <a onclick="onSpeakers()">START BUYING</a></button>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleDark" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleDark" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!--- carousel with 3 cards-->
<div id="carouselExampleCaptions" class="carousel carousel-dark slide" data-bs-ride="false">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="card-group">
<div class="card caRD">
<h5 class="card-title small">Tablet White EliteBook<br>Revolve 810 G2</h5></a>
<a onclick="onCardLink1()"><img src="card1.jpg" class="card-img-top " alt="..."></a>
<div class="card-body">
<ul class="d-flex justify-content-between list-unstyled">
<li><p class="card-text">Rs. 1,3000.00</p></li>
<li class="btn text-primary"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart2 " viewBox="0 0 16 16">
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
</svg></li>
</ul>
</div>
</div>
<div class="card caRD">
<h5 class="card-title small">Smart Camera 6200U<br>with 500GB SDcard</h5>
<a onclick="onCardLink2()"><img src="card2.jpg" class="card-img-top " alt="..."></a>
<div class="card-body">
<ul class="d-flex justify-content-between list-unstyled">
<li><p class="card-text">Rs. 2,9990.00</p></li>
<li class="btn text-primary"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart2 " viewBox="0 0 16 16">
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
</svg></li>
</ul>
</div>
</div>
<div class="card caRD">
<h5 class="card-title small">SmartWatch 2.0 LTE <br> Wifi Waterproof</h5>
<a onclick="onCardLink3()"><img src="card3.jpg" class="card-img-top " alt="..."></a>
<div class="card-body">
<ul class="d-flex justify-content-between list-unstyled">
<li><p class="card-text">Rs. 7290.00</p></li>
<li class="btn text-primary"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart2 " viewBox="0 0 16 16">
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
</svg></li>
</ul>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card-group">
<div class="card caRD">
<h5 class="card-title small">Wireless Audio <br> System Multiroom</h5>
<a onclick="onCardLink4()"><img src="card4.jpg" class="card-img-top " alt="..."></a>
<div class="card-body">
<ul class="d-flex justify-content-between list-unstyled">
<li><p class="card-text">Rs. 2,9990.00</p></li>
<li class="btn text-primary"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart2 " viewBox="0 0 16 16">
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
</svg></li>
</ul>
</div>
</div>
<div class="card caRD">
<h5 class="card-title small">Camera C430W 4K <br> Waterproof</h5>
<a onclick="onCardLink5()"><img src="card5.jpg" class="card-img-top " alt="..."></a>
<div class="card-body">
<ul class="d-flex justify-content-between list-unstyled">
<li><p class="card-text">Rs. 5900.00</p></li>
<li class="btn text-primary"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart2 " viewBox="0 0 16 16">
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
</svg></li>
</ul>
</div>
</div>
<div class="card caRD">
<h5 class="card-title small">Aerocool EN52377 <br> Dead Silence</h5>
<a onclick="onCardLink6()"><img src="card6.jpg" class="card-img-top " alt="..."></a>
<div class="card-body">
<ul class="d-flex justify-content-between list-unstyled">
<li><p class="card-text">Rs. 1500.00</p></li>
<li class="btn text-primary"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart2 " viewBox="0 0 16 16">
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
</svg></li>
</ul>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card-group">
<div class="card caRD">
<h5 class="card-title small">Gun Metal<br>USB 256GB</h5>
<a onclick="onCardLink7()"><img src="card7.jpg" class="card-img-top " alt="..."></a>
<div class="card-body">
<ul class="d-flex justify-content-between list-unstyled">
<li><p class="card-text">Rs. 906.00</p></li>
<li class="btn text-primary"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart2 " viewBox="0 0 16 16">
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
</svg></li>
</ul>
</div>
</div>
<div class="card caRD" >
<h5 class="card-title small">Gameconsole Destiny Special Edition</h5>
<a onclick="onCardLink8()"><img src="card_8.jpg" class="card-img-top " alt="..."></a>
<div class="card-body">
<ul class="d-flex justify-content-between list-unstyled">
<li><p class="card-text">Rs. 7890.00</p></li>
<li class="btn text-primary"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart2 " viewBox="0 0 16 16">
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
</svg></li>
</ul>
</div>
</div>
<div class="card caRD">
<h5 class="card-title small">Laptop White <br>EliteBook</h5>
<a onclick="onCardLink9()"><img src="card9.jpg" class="card-img-top " alt="..."></a>
<div class="card-body">
<ul class="d-flex justify-content-between list-unstyled">
<li><p class="card-text">Rs. 13000.00</p></li>
<li class="btn text-primary"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart2 " viewBox="0 0 16 16">
<path d="M0 2.5A.5.5 0 0 1 .5 2H2a.5.5 0 0 1 .485.379L2.89 4H14.5a.5.5 0 0 1 .485.621l-1.5 6A.5.5 0 0 1 13 11H4a.5.5 0 0 1-.485-.379L1.61 3H.5a.5.5 0 0 1-.5-.5zM3.14 5l1.25 5h8.22l1.25-5H3.14zM5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm9-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0z"/>
</svg></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!--image in middle-->
<div class="row">
<div class=" d-flex justify-content-around">
<a onclick="onTv()"><img src="banner_03.jpg" class="img-thumbnail" ></a>
</div>
</div>
<!--TIMER CAROUSEL-->
<div id="carouselExampleAutoplaying" class="carousel slide " data-bs-ride="carousel">
<div class="carousel-inner" ;>
<div class="carousel-item active ">
<div class=" container-fluid d-flex justify-content-center timerCAROUSEL" >
<div class="row " style="padding:0.5em;">
<div class="col-sm ">
<p class="h4 text-danger">Special Offer</p>
<img src="wirelesssound.jpg" class="img-thumbnail timerIMAGE" >
</div>
<div class="col-sm timerTEXTADJUST">
<p class="h4 text-primary mb-2">Wireless speaker Waterproof</p><br>
<p><span class="text-danger">29990.00</span><del class="small">39900.00</del></p>
<p> Hurry Up Offer ends in</p>
<span id="demo" class="demo"></span><br><br>
<p class="btn btn-warning BUtton"><a onclick="onCardLink4()">shop now</a></p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class=" container-fluid d-flex justify-content-around timerCAROUSEL " >
<div class="row" style="padding:0.5em;">
<div class="col-sm">
<p class="h4 text-danger">Special Offer</p>
<img src="laptopyoga.jpg" class="img-thumbnail timerIMAGE" >
</div>
<div class="col-sm timerTEXTADJUST">
<p class="h4 text-primary mb-2">Apple Macbook pro MF841</p><br>
<p><span class="text-danger">13000.00</span><del class="small">15000.00</del></p>
<p> Hurry Up Offer ends in</p>
<span id="demo1" class="demo"></span><br><br>
<p class="btn btn-warning BUtton"><a onclick="onCardLink1()">shop now</a></p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class=" container-fluid d-flex justify-content-around timerCAROUSEL" >
<div class=" row ">
<div class="col-sm">
<p class="h4 text-danger">Special Offer</p>
<img src="camera_4.jpg" class="img-thumbnail timerIMAGE" >
</div>
<div class="col-sm timerTEXTADJUST">
<p class="h4 text-primary mb-2">Camera C430W 4K Waterproof</p><br>
<p><span class="text-danger">5900.00</span><del class="small">7490.00</del></p>
<p> Hurry Up Offer ends in</p>
<span id="demo2" class="demo"></span><br><br>
<p class="btn btn-warning BUtton"><a onclick="onCardLink5()">shop now</a></p>
</div>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<script>
// Set the date we're counting down to
var countDownDate = new Date("mar 1, 2024 15:37:25").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
<script>
// Set the date we're counting down to
var countDownDate = new Date("mar 1, 2024 15:37:25").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo1").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo1").innerHTML = "EXPIRED";
}
}, 1000);
</script>
<script>
// Set the date we're counting down to
var countDownDate = new Date("mar 1, 2024 15:37:25").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo2").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo2").innerHTML = "EXPIRED";
}
}, 1000);
</script>
<!-- cameraAccessories------------------------------------------->
<div id="cameraAccessories" class=" mt-1 container-fluid sliDER" >
<div class="row " >
<div class="col-sm-8 border " >
<div class=" text-center slider-caRD ">
<div class="row mt-2">
<div class="col-lg " >
<div class="card h-100 slider-cards" >
<img src="accessories1.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">Tygot 10 Inches LED Ring Light for Camera, Phone with 7 Feet Long Foldable Lightweight Tripod Kit, Tripod (Black, Supports Up to 5000 g) </a></p>
<p>Rs. 639</p>
<a href="#" class="btn btn-warning rounded-pill mt-auto" style="font-size:0.8em;" onclick="onAddToCart(1)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg ">
<div class="card h-100 slider-cards" >
<img src="accessories2.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">Stookin 6x9 FT Parrot Green LEKERA Backdrop Photo Light Studio Photography Background ( Stand Not Included Reflector </a></p>
<p>Rs. 284</p>
<a href="#" class="btn btn-warning rounded-pill mt-auto" style="font-size:0.8em;" onclick="onAddToCart(2)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg">
<div class="card h-100 slider-cards" >
<img src="accessories3.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">DIGITEK Smartphone Gimbal DSG 005 3 Axis Gimbal for Mobile (300.0) </a></p>
<p>Rs. 5499</p>
<a href="#" class="btn btn-warning rounded-pill mt-auto" style="font-size:0.8em;" onclick="onAddToCart(3)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div><br>
<div class="row mb-2">
<div class="col-lg " >
<div class="card h-100 slider-cards" >
<img src="accessories4.jpg" style="height: 300px; width: 220px;" class="card-img-top mt-2 m-auto" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">DIGITEK DSG 007F Foldable Auto Balancing Gimbal for All Smart Phones 3 Axis Gimbal for Camera, Mobile (280) </a></p>
<p>Rs. 5988</p>
<a href="#" class="btn btn-warning rounded-pill mt-auto" style="font-size:0.8em;" onclick="onAddToCart(4)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg ">
<div class="card h-100 slider-cards" >
<img src="accessories5.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">Viraan R1S Bluetooth Remote Selfie Light 3in1 Selfie Stick Tripod Stand with All Phones Single Gimbal for Mobile, Camera (400)</a></p>
<p>Rs. 200</p>
<a href="#" class="btn btn-warning rounded-pill mt-auto" style="font-size:0.8em;" onclick="onAddToCart(5)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg">
<div class="card h-100 slider-cards" >
<img src="accessories7.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">Syvo WT-3130 Tripod, Tripod Kit (Brown/Black, Supports Up to 5000 g) </a></p>
<p>Rs. 799</p>
<a href="#" class="btn btn-warning rounded-pill mt-auto" style="font-size:0.8em;" onclick="onAddToCart(6)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-4 text-center d-flex justify-content-center" >
<div class="card slider-cards">
<img src="accessories8.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<h5 class="btn btn-danger ">deal of the day</h5>
<p class="card-text">PICPRO 350w LED Porta Light Kit with Green Screen for Videoshoot, Photography, YouTube Reflector</p>
<p>Rs. 6940</p>
<a href="#" class="btn btn-warning rounded-pill" onclick="onAddToCart(7)">Add to cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
<!--cameras-->
<div class=" mt-1 container-fluid sliDER" id="cameras">
<div class="row " >
<div class="col-sm-8 border " >
<div class=" text-center slider-caRD ">
<div class="row mt-2">
<div class="col-lg " >
<div class="card h-100 slider-cards" >
<img src="camera2.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">Camera C430W 4k with Waterproof cover </a></p>
<p>Rs. 1050</p>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onAddToCart(8)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg ">
<div class="card h-100 slider-cards" >
<img src="camera3.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">Camera C430W 4k Waterproof</a></p>
<p>Rs. 2500</p>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onAddToCart(9)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg">
<div class="card h-100 slider-cards" >
<img src="camera4.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">White NX Mini F1 SMART NX </a></p>
<p>Rs. 1049</p>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onAddToCart(10)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div><br>
<div class="row mb-2">
<div class="col-lg " >
<div class="card h-100 slider-cards" >
<img src="camera5.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">GoPro HERO9 Action Camera with 20MP Video Streaming (Dual display, Waterproof upto 33ft)</a></p>
<p>Rs. 25000</p>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onAddToCart(11)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg ">
<div class="card h-100 slider-cards" >
<img src="camera6.jpg" class="card-img-top mt-5 mb-5 m-auto" style="width:250px;" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">JVC GY GY-HM150U Compact Handheld 3-CCD Camcorder Camcorder (Black) </a></p>
<p>Rs. 98000</p>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onAddToCart(12)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg">
<div class="card h-100 slider-cards" >
<img style="height: 250px; width: 100px;" src="camera7.jpg" class="card-img-top m-auto mt-5 mb-3" alt="...">
<div class="card-body">
<p><a href="#" style="font-size: 10px; ">Insta360 One X2 Sports and Action Camera (Black, 0)</a></p>
<p>Rs. 10500</p>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onAddToCart(13)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-4 text-center d-flex justify-content-center" >
<div class="card slider-cards">
<img src="cameraImg1.jpg" class="card-img-top mt-2" alt="...">
<div class="card-body">
<h5 class="btn btn-danger ">deal of the day</h5>
<p class="card-text">PRONOVA Foldable Toy Drone with HQ WiFi Camera Drone</p>
<p>Rs. 3499</p>
<a href="#" class="btn btn-warning rounded-pill" onclick="onAddToCart(14)">Add to cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
<!-- cardLink1----------------------------------------->
<div class="container-fluid" id="cardLink1">
<div class="row">
<div class="col border d-flex justify-content-center" >
<img src="card1.jpg" style="height:85vh">
</div>
<div class="col mt-3" >
<p class="h5">Tablet Chromebook X360,Intel Celeron N4120,14-Inch (35.6 Cm),Hd,4Gb Lpddr4,64Gb Emmc,Intel Uhd Graphics,Thin&Light,Dual Speakers,Brightview Display (Chrome 64,White,1.49 Kg),Ca0505Tu,Chrome OS</p>
<hr>
<p class="h2" style="color: green;">13000.00<small style="color: red;font-size: 0.7em;">-15%OFF</small></p>
<small style="text-decoration: line-through;">M.R.P 15000.00</small>
<p>inclusive of all taxes</p>
<div class=" container-fluid row d-flex justify-content-around border">
<div class=" col">
<img src="replace.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">7 days replacement</a></small>
</div>
<div class=" col">
<img src="free delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">Free Delivery</a></small>
</div>
<div class=" col">
<img src="waranty.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">1 year waranty</a></small>
</div>
<div class="col">
<img src="pay on delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">cash on delivery</a></small>
</div>
</div>
<div class="mt-3 mb-5">
<button class="btn btn-warning" onclick="onAddToCart(71)">Add to Cart</button>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
<!--cardLink2-------------->
<div class="container-fluid" id="cardLink2">
<div class="row">
<div class="col border d-flex justify-content-center" >
<img src="card2.jpg" style="height:80vh">
</div>
<div class="col mt-3 " >
<p class="h5">EXMOOR® 4K Waterproof Vlog Camera with Wide Angle Lens Underwater WiFi Video Action Camera</p>
<hr>
<p class="h2" style="color: green;">20999.00<small style="color: red;font-size: 0.7em;">-15%OFF</small></p>
<small style="text-decoration: line-through;">M.R.P 30500.00</small>
<p>inclusive of all taxes</p>
<div class=" container-fluid row d-flex justify-content-around border">
<div class=" col">
<img src="replace.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">7 days replacement</a></small>
</div>
<div class=" col">
<img src="free delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">Free Delivery</a></small>
</div>
<div class=" col">
<img src="waranty.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">1 year waranty</a></small>
</div>
<div class="col">
<img src="pay on delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">cash on delivery</a></small>
</div>
</div>
<div class="mt-4 mb-5">
<a class="btn btn-warning" onclick="onAddToCart(72)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
<!-- cardLink3--------------->
<div class="container-fluid" id="cardLink3">
<div class="row">
<div class="col border d-flex justify-content-center" >
<img src="card3.jpg" style="height:80vh">
</div>
<div class="col mt-3 " >
<p class="h5">Fare-Boltt Ninja Call Pro Plus 1.83" Smart Watch with Bluetooth Calling, AI Voice Assistance, 100 Sports Modes IP67 Rating, 240 * 280 Pixel High Resolution</p>
<hr>
<p class="h2" style="color: green;">7029.00<small style="color: red;font-size: 0.7em;">-15%OFF</small></p>
<small style="text-decoration: line-through;">M.R.P 8000.00</small>
<p>inclusive of all taxes</p>
<div class=" container-fluid row d-flex justify-content-around border">
<div class=" col">
<img src="replace.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">7 days replacement</a></small>
</div>
<div class=" col">
<img src="free delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">Free Delivery</a></small>
</div>
<div class=" col">
<img src="waranty.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">1 year waranty</a></small>
</div>
<div class="col">
<img src="pay on delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">cash on delivery</a></small>
</div>
</div>
<div class="mt-4 mb-5">
<a class="btn btn-warning" onclick="onAddToCart(73)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
<!--cardLink4----------------------->
<div class="container-fluid" id="cardLink4">
<div class="row">
<div class="col border d-flex justify-content-center" >
<img src="card4.jpg" style="height:80vh">
</div>
<div class="col mt-3 " >
<p class="h5">Portable WiFi and Bluetooth Smart Speaker with Amazon Alexa by FABRIQ: Wireless Connectivity with Stereo Pairing for Multi-Room Home Audio (Arrows)</p>
<hr>
<p class="h2" style="color: green;">20999.00<small style="color: red;font-size: 0.7em;">-15%OFF</small></p>
<small style="text-decoration: line-through;">M.R.P 30100.00</small>
<p>inclusive of all taxes</p>
<div class=" container-fluid row d-flex justify-content-around border">
<div class=" col">
<img src="replace.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">7 days replacement</a></small>
</div>
<div class=" col">
<img src="free delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">Free Delivery</a></small>
</div>
<div class=" col">
<img src="waranty.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">1 year waranty</a></small>
</div>
<div class="col">
<img src="pay on delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">cash on delivery</a></small>
</div>
</div>
<div class="mt-4 mb-5">
<a class="btn btn-warning" onclick="onAddToCart(74)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
<!--cardLink5-->
<div class="container-fluid" id="cardLink5">
<div class="row">
<div class="col border d-flex justify-content-center" >
<img src="card5.jpg" style="height:80vh">
</div>
<div class="col mt-3 " >
<p class="h5"> Sony HDRCX405 9.2MP HD Handycam Camcorder with Free Carrying Case, Optical( white)</p>
<hr>
<p class="h2" style="color: green;">5090.00<small style="color: red;font-size: 0.7em;">-15%OFF</small></p>
<small style="text-decoration: line-through;">M.R.P 7049.00</small>
<p>inclusive of all taxes</p>
<div class=" container-fluid row d-flex justify-content-around border">
<div class=" col">
<img src="replace.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">7 days replacement</a></small>
</div>
<div class=" col">
<img src="free delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">Free Delivery</a></small>
</div>
<div class=" col">
<img src="waranty.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">1 year waranty</a></small>
</div>
<div class="col">
<img src="pay on delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">cash on delivery</a></small>
</div>
</div>
<div class="mt-4 mb-5">
<a class="btn btn-warning" onclick="onAddToCart(75)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
<!--cardLink6-->
<div class="container" id="cardLink6">
<div class="row">
<div class="col border d-flex justify-content-center" >
<img src="card6.jpg" style="height:80vh">
</div>
<div class="col mt-3 " >
<p class="h5">Singer Aerocool Pride DX 70L Desert Air Cooler with Honey Comb Cooling Pad</p>
<hr>
<p class="h2" style="color: green;">10050.00<small style="color: red;font-size: 0.7em;">-15%OFF</small></p>
<small style="text-decoration: line-through;">M.R.P 10099.00</small>
<p>inclusive of all taxes</p>
<div class=" container row d-flex justify-content-around border">
<div class=" col">
<img src="replace.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">7 days replacement</a></small>
</div>
<div class=" col">
<img src="free delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">Free Delivery</a></small>
</div>
<div class=" col">
<img src="waranty.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">1 year waranty</a></small>
</div>
<div class="col">
<img src="pay on delivery.png" style="height: 35px;"><br>
<small><a href="" class="CARD-OFFERS">cash on delivery</a></small>
</div>
</div>
<div class="mt-3 mb-5">
<a class="btn btn-warning" onclick="onAddToCart(76)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
<!--cardLink7----------------------------------->
<div class="container" id="cardLink7">
<div class="row">
<div class="col border d-flex justify-content-center" >
<img src="card7.jpg" style="height:80vh">
</div>
<div class="col mt-3 " >
<p class="h5">rts Mini USB Type C Adapter Plug, Type C Female to USB A Male Charger Charging Cable Converter compatible for iPhone, Samsung S20 ultra/S21/S10/S8/S9/MacBook Pro iPad Silver</p>
<hr>
<p class="h2" style="color: green;">9060.00<small style="color: red;font-size: 0.7em;">-15%OFF</small></p>
<small style="text-decoration: line-through;">M.R.P 10309.00</small>
<p>inclusive of all taxes</p>
<div class=" container row d-flex justify-content-around border">
<div class=" col">
<img src="replace.png" style="height: 35px;"><br>
<small><a style="color:blue;text-decoration: none;font-size:0.7em ;">7 days replacement</a></small>
</div>
<div class=" col">
<img src="free delivery.png" style="height: 35px;"><br>
<small><a style="color:blue;text-decoration: none;font-size:0.7em ;">Free Delivery</a></small>
</div>
<div class=" col">
<img src="waranty.png" style="height: 35px;"><br>
<small><a style="color:blue;text-decoration: none;font-size:0.7em ;">1 year waranty</a></small>
</div>
<div class="col">
<img src="pay on delivery.png" style="height: 35px;"><br>
<small><a style="color:blue;text-decoration: none;font-size:0.7em ;">cash on delivery</a></small>
</div>
</div>
<div class="mt-4 mb-5">
<a class="btn btn-warning" onclick="onAddToCart(77)">Add to Cart</a>
<a href="#" class="btn btn-warning rounded-pill " style="font-size:0.8em;" onclick="onBuyNow()">Buy Now</a>
</div>
</div>
</div>
</div>
<!--caesLink8-->
<div class="container" id="cardLink8">
<div class="row">
<div class="col border d-flex justify-content-center" >
<img src="card_8.jpg" style="height:80vh">
</div>
<div class="col mt-3 " >
<p class="h5">New World Old Arcade Classic Retro Game Console, 8 BIt TV AV Output Interface Game Console, plug & play wireless video game for kids for 2 Players Built in 620 Games</p>
<hr>
<p class="h2" style="color: green;">7890.00<small style="color: red;font-size: 0.7em;">-15%OFF</small></p>
<small style="text-decoration: line-through;">M.R.P 8790.00</small>
<p>inclusive of all taxes</p>
<div class=" container row d-flex justify-content-around border">
<div class=" col">
<img src="replace.png" style="height: 35px;"><br>