-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
995 lines (942 loc) · 49.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Basic-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--WebPage Title-->
<title>BikeKart - Buy Your Dream Motorcycle!</title>
<!-- Theme CSS -->
<link rel="stylesheet" href="./assets/css/style.css" type="text/css" />
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Favicon & Bookmark -->
<link rel="icon" href="./assets/images/red icon.svg" type="image/x-icon">
<link rel="shortcut icon" href="./assets/images/favicon.png" type="image/x-icon">
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="preloader-wave"><img src="./assets/images/icon.png" alt="preloader"></div>
</div>
<!-- Header & Navigation Bar -->
<header>
<div class="container">
<div class="nav-logo">
<a href="index.html" title="BikeKart">
<img class="normal" src="./assets/images/light logo.png" alt="bikekart">
</a>
</div>
<div class="navigation">
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li class="has-submenu">
<a href class="submenu">Bikes <i class="fa-solid fa-angle-down"></i></a>
<ul class="submenu-list">
<li><a href="pages/bikes.html">New Bikes</a></li>
<li><a href="pages/bikes.html">Find New Bikes</a></li>
<li><a href="pages/bikes.html">Compare Bikes</a></li>
<li><a href="pages/bikes.html">Check On-Road Price</a></li>
<li><a href="pages/bikes.html">Locate Showrooms</a></li>
<li><a href="pages/bikes.html">Upcoming Bikes</a></li>
<li><a href="pages/bikes.html">New Launches</a></li>
<li><a href="pages/bikes.html">Popular Brands</a></li>
</ul>
</li>
<li class="has-submenu">
<a href class="submenu">Scooters <i class="fa-solid fa-angle-down"></i></a>
<ul class="submenu-list">
<li><a href="pages/scooters.html">Find New Scooters</a></li>
<li><a href="pages/scooters.html">Electric Scooters</a></li>
<li><a href="pages/scooters.html">Upcoming Scooters</a></li>
</ul>
</li>
<li class="has-submenu">
<a href class="submenu">Accessories <i class="fa-solid fa-angle-down"></i></a>
<ul>
<li><a href="pages/accessories.html">Tires</a></li>
<li><a href="pages/accessories.html">Tools & Maintenance</a></li>
<li><a href="pages/accessories.html">Riding Gears</a></li>
<li><a href="pages/accessories.html">Helmets</a></li>
<li><a href="pages/accessories.html">Protections</a></li>
</ul>
</li>
<li><a href="pages/book-service.html">Book Service</a></li>
<li class="has-submenu">
<a href class="submenu">Blog <i class="fa-solid fa-angle-down"></i></a>
<ul class="submenu-list">
<li><a href="pages/blog.html">News</a></li>
<li><a href="pages/blog.html">Videos & Tips</a></li>
<li><a href="pages/blog.html">Expert Reviews</a></li>
</ul>
</li>
<li class="has-submenu">
<a href class="submenu">Pages <i class="fa-solid fa-angle-down"></i></a>
<ul>
<li><a href="pages/contact.html">Contact Us</a></li>
<li><a href="pages/single-post.html">Faq's</a></li>
<li><a href="pages/single-post.html">Privacy Policy</a></li>
<li><a href="pages/single-post.html">Terms & Conditions</a></li>
</ul>
</li>
</ul>
<ul class="icons">
<li class="has-submenu">
<a href><i class="fa fa-search"></i></a>
<ul>
<li><input type="text" id="search" name="search" placeholder="Search Sports Bike..."></li>
</ul>
</li>
<li>
<div class="cart">
<a href><span class="item-count">0</span>
<i class="fas fa-shopping-cart"></i></a>
<ul>
<li><input type="text" id="items" name="items" disabled value="No products in the cart."></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</header>
<!-- Top Slider Section -->
<section class="home">
<div class="container">
<div class="slider">
<div class="bike-info">
<h3 class="brand">Yamaha</h3>
<h1 class="model">MT 03</h1>
<p>A fierce streetfighter born from the YZF-R3 Supersports lineage.
Compact and bold, it challenges rivals.</p>
<ul class="features">
<li><span><i class="fa-regular fa-circle-check"></i></span>321cc
Engine</li>
<li><span><i class="fa-regular fa-circle-check"></i></span>41.4 PS
Power</li>
<li><span><i class="fa-regular fa-circle-check"></i></span>169 Kg
Kerb Weight</li>
</ul>
<div>
<span class="offer-price">Rs.3 Lakh*</span> <span class="real-price">Rs.3.5 Lakh*</span>
</div>
<div class="button-container">
<a href="pages/book-service.html"><button class="book-now">Book
Now</button></a>
</div>
</div>
<div class="bike-image">
<div class="bike-headlight"></div>
<img src="./assets/images/bikes/Yamaha_MT_03.png" alt="Yamaha MT 03">
</div>
</div>
<section id="scroll-down-button">
<a href="#about"><span></span><span></span><span></span></a>
</section>
</div>
</section>
<!--About Section -->
<section class="about" id="about">
<div class="container">
<div class="row">
<div class="info">
<div class="title">
<h1><span>BIKEKART</span> WORLD MOST </h1>
<h2>LARGEST <span>MOTORCYCLE STORE</span></h2>
</div>
<div class="content">
<p><b>BikeKart</b>, renowned as the world's largest motorcycle
retailer, proudly presents a diverse range of top-tier bikes for
your buying or trading needs. Explore our collection and take
advantage of substantial discounts on the latest models.</p>
</div>
<div class="best-things">
<ul class="feature-list">
<li>
<a href="#">
<span class="feature-icon">
<i class="far fa-circle-check"></i>
</span>
Free Shipping
</a>
</li>
<li>
<a href="#">
<span class="feature-icon">
<i class="far fa-circle-check"></i>
</span>
Free Returns
</a>
</li>
<li>
<a href="#">
<span class="feature-icon">
<i class="far fa-circle-check"></i>
</span>
Easy Parts Replacement
</a>
</li>
<li>
<a href="#">
<span class="feature-icon">
<i class="far fa-circle-check"></i>
</span>
5-Year Guarantee
</a>
</li>
<li>
<a href="#">
<span class="feature-icon">
<i class="far fa-circle-check"></i>
</span>
International Store
</a>
</li>
</ul>
</div>
<div class="stats-counter">
<div class="counter-item">
<i class="fa fa-bicycle"></i>
<div class="counter-details">
<span class="counter-number">500</span>
<span class="counter-title">Bikes Sold</span>
</div>
</div>
<div class="counter-item">
<i class="fa fa-users"></i>
<div class="counter-details">
<span class="counter-number">2000</span>
<span class="counter-title">Happy Customers</span>
</div>
</div>
<div class="counter-item">
<i class="fa fa-trophy"></i>
<div class="counter-details">
<span class="counter-number">10</span>
<span class="counter-title">Years in Business</span>
</div>
</div>
</div>
</div>
<div class="info-image">
<img src="./assets/images/About BikeKart.png">
</div>
</div>
</div>
</section>
<!-- How We Works Section -->
<section class="how-it-works">
<div class="container">
<div class="hiw-header">
<div class="header-content">
<h2 class="main-heading">
<span class="heading">How It <span class="colored-text"> Works</span>?</span>
</h2>
</div>
</div>
<div class="row">
<div>
<i class="fa-solid fa-motorcycle"></i>
<h2>Find the Right Bike</h2>
<p>Discover the perfect bike that suits your style and needs. We
offer a wide range of options to choose from, ensuring you find
the bike that's just right for you.</p>
</div>
<div>
<i class="fa-solid fa-cart-shopping"></i>
<h2>Book it Online</h2>
<p>Booking your bike online has never been easier. With our
user-friendly platform, you can reserve your chosen bike quickly
and hassle-free, saving you valuable time.</p>
</div>
<div>
<i class="fa-solid fa-face-smile"></i>
<h2>Enjoy your Ride</h2>
<p>Experience the joy of riding your dream bike. Our well-maintained
and comfortable bikes ensure that every journey is a delightful
and memorable one.</p>
</div>
</div>
<section id="scroll-down-button" class="scroll-btn">
<a href="#featured-bikes"><span></span><span></span><span></span></a>
</section>
</div>
</section>
<!-- Featured Bike Section -->
<section class="featured-bikes" id="featured-bikes">
<div class="container">
<div class="featured-header">
<div class="header-content">
<div class="sub-heading">
<span class="sub-heading">YOUR RIDE START HERE.</span>
</div>
<h2 class="main-heading">
<span class="heading">CHOOSE YOUR <span class="colored-text">
DREAM</span> BIKE</span>
</h2>
</div>
</div>
<div class="row">
<div class="product">
<div class="bike">
<span class="discount">-20%</span>
<a href><img class="bike-image" src="./assets/images/bikes/Yamaha MT 15 V2.png"></a>
<div class="bike-name"><a href>Yamaha MT 15 V2</a></div>
<div class="bike-details">
<div class="features">
<div class="first">
<div class="feature">
<span><i class="fa-brands fa-superpowers"></i>321cc ENGINE</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-bolt"></i>29.6Nm Torque</span>
</div>
</div>
<div class="second">
<div class="feature">
<span><i class="fa-solid fa-scale-balanced"></i>169kg K
Weight</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-gauge-high"></i> 25/1 Mileage</span>
</div>
</div>
</div>
<div class="prices">
<span class="current-price">₹ 2.80 LAKH<span class="original-price"> ₹ 3 LAKH</span></span>
<a href="pages/book-service.html"><button class="book-now">BOOK
NOW <i class="fa-solid fa-motorcycle"></i></button></a>
</div>
</div>
</div>
</div>
<div class="product">
<div class="bike">
<span class="discount">-10%</span>
<a href><img class="bike-image" src="./assets/images/bikes/Aprilia Tuareg 660.png"></a>
<div class="bike-name"><a href>Aprilia Tuareg 660</a></div>
<div class="bike-details">
<div class="features">
<div class="first">
<div class="feature">
<span><i class="fa-brands fa-superpowers"></i>659cc ENGINE</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-bolt"></i>13.3Nm Torque</span>
</div>
</div>
<div class="second">
<div class="feature">
<span><i class="fa-solid fa-scale-balanced"></i>136kg K
Weight</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-gauge-high"></i> 15/1 Mileage</span>
</div>
</div>
</div>
<div class="prices">
<span class="current-price">₹ 15 LAKH<span class="original-price"> ₹ 17 LAKH</span></span>
<a href="pages/book-service.html"><button class="book-now">BOOK
NOW <i class="fa-solid fa-motorcycle"></i></button></a>
</div>
</div>
</div>
</div>
<div class="product">
<div class="bike">
<span class="discount">-05 + 2%</span>
<a href><img class="bike-image" src="./assets/images/bikes/Royal Enfield Classic 350.png"></a>
<div class="bike-name"><a href>Royal Enfield Classic 350</a></div>
<div class="bike-details">
<div class="features">
<div class="first">
<div class="feature">
<span><i class="fa-brands fa-superpowers"></i>350cc ENGINE</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-bolt"></i>27Nm Torque</span>
</div>
</div>
<div class="second">
<div class="feature">
<span><i class="fa-solid fa-scale-balanced"></i>195kg K
Weight</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-gauge-high"></i> 41.55KMPL MiL</span>
</div>
</div>
</div>
<div class="prices">
<span class="current-price">₹ 1.93 LAKH <span class="original-price"> 2.25 LAKH</span></span>
<a href="pages/book-service.html"><button class="book-now">BOOK
NOW <i class="fa-solid fa-motorcycle"></i></button></a>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="product">
<div class="bike">
<span class="discount">-01%</span>
<a href><img class="bike-image" src="./assets/images/bikes/Tork Kratos R Urban Trim.png"></a>
<div class="bike-name"><a href>Tork Kratos R Urban Trim</a></div>
<div class="bike-details">
<div class="features">
<div class="first">
<div class="feature">
<span><i class="fa-brands fa-superpowers"></i>140cc ENGINE</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-bolt"></i>19Nm Torque</span>
</div>
</div>
<div class="second">
<div class="feature">
<span><i class="fa-solid fa-scale-balanced"></i>140kg K
Weight</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-gauge-high"></i> 70/1 Mileage</span>
</div>
</div>
</div>
<div class="prices">
<span class="current-price">₹ 1.67 LAKH<span class="original-price"> ₹ 1.70 LAKH</span></span>
<a href="pages/book-service.html"><button class="book-now">BOOK
NOW <i class="fa-solid fa-motorcycle"></i></button></a>
</div>
</div>
</div>
</div>
<div class="product">
<div class="bike">
<span class="discount">-08%</span>
<a href><img class="bike-image" src="./assets/images/bikes/Ultraviolette F77.png"></a>
<div class="bike-name"><a href>Ultraviolette F77</a></div>
<div class="bike-details">
<div class="features">
<div class="first">
<div class="feature">
<span><i class="fa-brands fa-superpowers"></i>250cc ENGINE</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-bolt"></i>13.3Nm Torque</span>
</div>
</div>
<div class="second">
<div class="feature">
<span><i class="fa-solid fa-scale-balanced"></i>207kg K
Weight</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-gauge-high"></i> 307 km/Charge</span>
</div>
</div>
</div>
<div class="prices">
<span class="current-price">₹ 3.80 LAKH <span class="original-price"> ₹ 5.50 LAKH</span></span>
<a href="pages/book-service.html"><button class="book-now">BOOK
NOW <i class="fa-solid fa-motorcycle"></i></button></a>
</div>
</div>
</div>
</div>
<div class="product">
<div class="bike">
<span class="discount">-20%</span>
<a href><img class="bike-image" src="./assets/images/bikes/Kawasaki Ninja ZX-10R.png"></a>
<div class="bike-name"><a href>Kawasaki Ninja ZX-10R</a></div>
<div class="bike-details">
<div class="features">
<div class="first">
<div class="feature">
<span><i class="fa-brands fa-superpowers"></i>998cc ENGINE</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-bolt"></i>114.9Nm Torque</span>
</div>
</div>
<div class="second">
<div class="feature">
<span><i class="fa-solid fa-scale-balanced"></i>207kg K
Weight</span>
</div>
<div class="feature">
<span><i class="fa-solid fa-gauge-high"></i> 12KMPL Mil</span>
</div>
</div>
</div>
<div class="prices">
<span class="current-price">₹ 15.99 LAKH <span class="original-price"> ₹ 16.50 LAKH</span></span>
<a href="pages/book-service.html"><button class="book-now">BOOK
NOW <i class="fa-solid fa-motorcycle"></i></button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<section id="scroll-down-button" class="scroll-btn">
<a href="#logo-marquee"><span></span><span></span><span></span></a>
</section>
</section>
<!-- Featured Brands Name -->
<section class="logo-marquee" id="logo-marquee">
<div class="header-container">
<div class="featured-header">
<div class="header-content">
<div class="sub-heading">
<span class="sub-heading">WORLD'S COLLECTION</span>
</div>
<h2 class="main-heading">
<span class="heading">CHOOSE FROM TOP <span class="colored-text">BRANDS</span></span>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="marquee-wrapper">
<div class="marquee">
<a class="#"><img src="./assets/images/brands/Harley DEvidSON.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/TVS.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/Ford.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/Dodge.png" alt></a>
</div>
<div class="marquee">
<a class><img src="./assets/images/brands/Royal Enfield.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/HERO.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/Mahindra.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/BMW.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/KTM.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/Suzuki.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/Jagaur.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/Honda.png" alt></a>
</div>
<div class="marquee">
<a class="#"><img src="./assets/images/brands/Yamaha.png" alt></a>
</div>
</div>
</div>
<section id="scroll-down-button" class="scroll-btn">
<a href="#featured-products"><span></span><span></span><span></span></a>
</section>
</section>
<!-- Featured Products Section-->
<section class="featured-products" id="featured-products">
<div class="header-container">
<div class="featured-header">
<div class="header-content">
<div class="sub-heading">
<span class="sub-heading">DISCOVER OUR ACCESSORIES.</span>
</div>
<h2 class="main-heading">
<span class="heading">EXPLORE YOUR <span class="colored-text">GEAR</span></span>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="row one">
<div class="product">
<div class="product-image">
<a href class="original-image"><img src="./assets/images/products/Navy Blue Motorcycle Jacket.png" alt="Classic Navy Blue Motorcycle Jacket"></a>
<a href class="hover-image"><img src="./assets/images/products/Navy Blue Motorcycle Jacket Back.png" alt="Classic Navy Blue Motorcycle Jacket-Back"></a>
<a href="pages/book-service.html"> <button class="cart-button">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button></a>
</div>
<div class="product-details">
<div class="product-name"><a href>RIDING JACKET</a></div>
<div class="product-description">A classic, navy blue motorcycle
jacket with a subtle pattern of stars and a matte finish.</div>
<div class="product-price">₹1799.99</div>
</div>
</div>
<div class="product">
<div class="product-image">
<a href class="original-image"><img src="./assets/images/products/rugged_waterproof_motorcycle_top_luggage_box.png"></a>
<a href class="hover-image"><img src="./assets/images/products/lUGGAE bOX.png"></a>
<a href="pages/book-service.html"><button class="cart-button">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button></a>
</div>
<div class="product-details">
<div class="product-name"><a href>Droom Luggage Box </a></div>
<div class="product-description">A rugged, water-proof motorcycle
top luggage box with a matte black,red finish, designed for
maximum durability.</div>
<div class="product-price">₹999.99</div>
</div>
</div>
</div>
<div class="row two">
<div class="product">
<div class="product-image">
<a href class="original-image"><img src="./assets/images/products/striking_dynamic_motorcycle_helmet.png"></a>
<a href class="hover-image"><img src="./assets/images/products/Dynamic_motorcycle_helmet.png"></a>
<a href="pages/book-service.html"><button class="cart-button">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button></a>
</div>
<div class="product-details">
<div class="product-name"><a href>Motolmet-Z</a></div>
<div class="product-description">Striking, dynamic motorcycle
helmet with a striking red, white, and black color combination.</div>
<div class="product-price">₹2999.99</div>
</div>
</div>
</div>
<div class="row three">
<div class="product">
<div class="product-image">
<a href class="original-image"><img src="./assets/images/products/RED_motorcycle_rainwear_SUIT.png"></a>
<a href class="hover-image"><img src="./assets/images/products/sleek_RED_motorcycle_rainwear_SUIT_for_twowheeler.png"></a>
<a href="pages/book-service.html"> <button class="cart-button">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button></a>
</div>
<div class="product-details">
<div class="product-name"><a href>Premimum Rainwear Suit</a></div>
<div class="product-description">A sleek, red motorcycle rainwear
SUIT for two-wheeler and bike riders, with a glossy finish and
reflective accents.</div>
<div class="product-price">₹1499.99</div>
</div>
</div>
<div class="product">
<div class="product-image">
<a href class="original-image"><img src="./assets/images/products/Gloves.png"></a>
<a href class="hover-image"><img src="./assets/images/products/Gloves_with_antislip_silicon_Pads.png"></a>
<a href="pages/book-service.html"> <button class="cart-button">
<i class="fas fa-shopping-cart"></i> Add to Cart
</button></a>
</div>
<div class="product-details">
<div class="product-name"><a href>Motolves-G Gloves</a></div>
<div class="product-description">Gloves, with anti-slip silicon
pads and a velcro sealed edge, against a stark white.</div>
<div class="product-price">₹399.99</div>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter Section -->
<section class="newsletter-section">
<div class="container">
<h2 class="newsletter-heading">Sign up and receive a <span class="colored-text">10% </span>discount on your first order!</h2>
<div class="newsletter-form">
<input type="email" name="email" placeholder="Email">
<button type="submit" class="btn btn-primary">Subscribe</button>
</div>
</div>
</section>
<!-- Testimonials/Reviews-->
<section class="testimonials">
<div class="container">
<div class="testimonials-header">
<div class="header-content">
<div class="sub-heading">
<span class="sub-heading">TESTIMONIALS</span>
</div>
<h2 class="main-heading">
<span class="heading">Recent <span class="colored-text">Reviews
</span> & <span class="colored-text">Ratings</span></span>
</h2>
<div class="content">Explore our bike store's latest reviews and
ratings from satisfied bikers.</div>
</div>
</div>
<div class="testimonial-carousel">
<div class="testimonial">
<div class="testimonial-item">
<h3 class="item-title">
<span class="quote-icon"><i class="fa-solid fa-quote-right"></i></span>
<span class="title-text">Fantastic Bike Shop!</span>
</h3>
<p class="testimonial-content">I recently visited this bike shop,
and I must say, their selection is amazing. The staff was
friendly and knowledgeable, helping me find the perfect bike for
my needs. The quality of their bikes is top-notch, and the
prices are reasonable. I couldn't be happier with my purchase!</p>
<div class="reviewer-wrap">
<h4 class="reviewer-name">Rajesh Kumar</h4>
<ul class="rating-star">
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
</ul>
</div>
</div>
<div class="testimonial-item">
<h3 class="item-title">
<span class="quote-icon"><i class="fa-solid fa-quote-right"></i></span>
<span class="title-text">Excellent Customer Service</span>
</h3>
<p class="testimonial-content">I had a great experience at this
bike store. The customer service was exceptional. They took the
time to understand my requirements and recommended a bike that
was a perfect fit. The after-sales support has been fantastic
too. I highly recommend this store to all bike enthusiasts.</p>
<div class="reviewer-wrap">
<h4 class="reviewer-name">Priya Sharma</h4>
<ul class="rating-star">
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
</ul>
</div>
</div>
<div class="testimonial-item">
<h3 class="item-title">
<span class="quote-icon"><i class="fa-solid fa-quote-right"></i></span>
<span class="title-text">Best Bike Shop in Town!</span>
</h3>
<p class="testimonial-content">I've been a loyal customer of this
bike shop for years, and they never disappoint. Their range of
bikes, accessories, and maintenance services are unmatched. The
staff is always courteous and ready to assist. I trust them
completely with my bike needs, so yeah a great thanks to all of
you.</p>
<div class="reviewer-wrap">
<h4 class="reviewer-name">Amit Patel</h4>
<ul class="rating-star">
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
<li><i class="fa-solid fa-star"></i></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<section id="scroll-down-button" class="scroll-btn">
<a href="#blog"><span></span><span></span><span></span></a>
</section>
</section>
<!-- Blog Posts Section-->
<section class="blog" id="blog">
<div class="container">
<div class="blog-header">
<div class="header-content">
<div class="sub-heading">
<span class="sub-heading">Updates from Blog</span>
</div>
<h2 class="main-heading">
<span class="heading">OUR <span class="colored-text">BLOGS</span>
& NEWS</span>
</h2>
<div class="content">Discover thrilling bike adventures, expert
reviews, and riding essentials here.</div>
</div>
</div>
<div class="row">
<div class="card">
<div class="article">
<div class="image">
<a href="pages/single-post.html">
<img src="./assets/images/posts/Best Motorcycle Road Trips.jpg">
</a>
</div>
<div class="category">
<a href="#">Guide</a>
</div>
<div class="meta">
<div class="info">
<span class="author">
<span class="label">By</span>
<a href="#">Vijay</a>
</span>
<span class="date">
<time class="published">August 21</time>
</span>
</div>
</div>
<h3 class="title"> <a href="pages/single-post.html">Exploring
Scenic Routes: Best Motorcycle Road Trips</a></h3>
<p class="content">Embark on unforgettable journeys with our guide
to the most scenic motorcycle road trips.</p>
<div class="read-more">
<a class="link" href="pages/single-post.html">
<span class="text">
<small>Read More</small>
</span>
<span class="right-arrow">
<i class="fa-solid fa-angles-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="card">
<div class="article">
<div class="image">
<a href="pages/single-post.html">
<img src="./assets/images/posts/Top 10 Motorcycle Models of the Year.png">
</a>
</div>
<div class="category">
<a href="#">Our Success</a>
</div>
<div class="meta">
<div class="info">
<span class="author">
<span class="label">By</span>
<a href="#">James</a>
</span>
<span class="date">
<time class="published">August 21</time>
</span>
</div>
</div>
<h3 class="title"> <a href="pages/single-post.html">Top 10
Motorcycle Models of the Year (Based on Sells & Ratings)</a></h3>
<p class="content">From vintage classics to modern marvels, take a
journey through time as we trace the evolution of motorcycle
design.</p>
<div class="read-more">
<a class="link" href="pages/single-post.html">
<span class="text">
<small>Read More</small>
</span>
<span class="right-arrow">
<i class="fa-solid fa-angles-right"></i>
</span>
</a>
</div>
</div>
</div>
<div class="card">
<div class="article">
<div class="image">
<a href="pages/single-post.html">
<img src="./assets/images/posts/History of Motorcycle Design and Evolution Over Decades.jpg">
</a>
</div>
<div class="category">
<a href="#">Something</a>
</div>
<div class="meta">
<div class="info">
<span class="author">
<span class="label">By</span>
<a href="#">BonD</a>
</span>
<span class="date">
<time class="published">August 21</time>
</span>
</div>
</div>
<h3 class="title"> <a href="pages/single-post.html">History of
Motorcycle Design: Evolution Over Decades</a></h3>
<p class="content">Explore the most sought-after motorcycle models
that have taken the riding world by storm this year.</p>
<div class="read-more">
<a class="link" href="pages/single-post.html">
<span class="text">
<small>Read More</small>
</span>
<span class="right-arrow">
<i class="fa-solid fa-angles-right"></i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="about-text">
<h4>ABOUT US</h4>
<div class="footer-logo">
<a href="index.html" title="BikeKart">
<img class="normal" src="./assets/images/light logo.png" alt="bikekart">
</a>
</div>
<p>Dive into a world of top-notch motorcycle and premium
accessories. Elevate your bike's look and performance effortlessly
or get your dream bike with us!</p>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-youtube"></i></a>
</div>
</div>
<div class="services">
<h4>SERVICES</h4>
<ul>
<li><a href="pages/accessories.html">Dirt Bike/OEM Parts</a></li>
<li><a href="pages/accessories.html">Tires</a></li>
<li><a href="pages/accessories.html">Maintenance Tools</a></li>
<li><a href="pages/accessories.html">Riding Gears</a></li>
<li><a href="pages/accessories.html">Helmets</a></li>
<li><a href="pages/accessories.html">Protections</a></li>
</ul>
</div>
<div class="quick-links">
<h4>QUICK LINKS</h4>
<ul>
<li><a href="pages/single-post.html">Privacy Policy</a></li>
<li><a href="pages/single-post.html">Refund Policy</a></li>
<li><a href="pages/single-post.html">Terms of Service</a></li>
<li><a href="pages/single-post.html">Refurbished Products</a></li>
<li><a href="pages/single-post.html">Shipping Policies</a></li>
<li><a href="pages/contact.html">Sell with Us</a></li>
</ul>
</div>
<div class="contact">
<h4>CONTACT US</h4>
<h5><i class="fa-solid fa-phone-flip"></i> Phone</h5>
<p>+91 98765 43210</p>
<h5><i class="fa-solid fa-envelope"></i> Email</h5>
<p>[email protected]</p>
<h5><i class="fa-solid fa-location-dot"></i> Address</h5>
<p>1234 Blossom Street,
Roseville Gardens,
Mumbai 400001,
Maharashtra, India</p>
</div>
</div>
<hr>
<!-- Copyright Informations -->
<div class="copyright-text">
<p>© 2023 BikeKart. Made with <span>❤</span> by <a href="https://twitter.com/vijaysinghop/">Vijay Singh</a>.</p>
</div>
</div>
</footer>
</body>
</html>