-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhero-splendor-plus.html
1449 lines (1403 loc) · 83.9 KB
/
hero-splendor-plus.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 name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="canonical" href="https://wheelguru.in/hero-splendor-plus">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0F7LTWCJMP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-0F7LTWCJMP');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1195438021979002"
crossorigin="anonymous"></script>
<meta name="google-adsense-account" content="ca-pub-1195438021979002">
<!-- Google tag (gtag.js) -->
<!-- <meta name="keywords" content="bajaj bike, bajaj bike price, new bajaj bike, bajaj bike models, bajaj bike new model, "> -->
<!-- Primary Meta Tags -->
<title>Hero Splendor Plus Price, Models, Specification, wheelguru</title>
<meta name="title" content="Hero Splendor Plus Price, Models, Specification, wheelguru" />
<meta name="description"
content="The Hero Splendor Plus motorcycle starts at a price of Rs 75,141 and is available in India in three variants with seven color options." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://wheelguru.in/hero-splendor-plus" />
<meta property="og:title" content="Hero Splendor Plus Price, Models, Specification, wheelguru" />
<meta property="og:description"
content="The Hero Splendor Plus motorcycle starts at a price of Rs 75,141 and is available in India in three variants with seven color options." />
<meta property="og:image" content="https://wheelguru.in/res/meta-image/hero-splendor-plus.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://wheelguru.in/hero-splendor-plus" />
<meta property="twitter:title" content="Hero Splendor Plus Price, Models, Specification, wheelguru" />
<meta property="twitter:description"
content="The Hero Splendor Plus motorcycle starts at a price of Rs 75,141 and is available in India in three variants with seven color options." />
<meta property="twitter:image" content="https://wheelguru.in/res/meta-image/hero-splendor-plus.png" />
<!-- Meta Tags Generated with https://metatags.io -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<style>
/* @nup@m */
a {
text-decoration: none;
}
a small,
a svg {
display: block;
margin: 0 auto;
text-align: center;
}
a small {
font-size: .6rem;
}
.bg-duo {
background: rgb(255, 255, 255);
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 50%);
}
/* @nup@m */
.card.card-hover:hover div hr {
width: 100% !important;
}
.card-body hr {
transition: 0.5s;
width: 0%;
border-style: dashed !important;
border-bottom-color: #000 !important;
}
#bg-1 {
background-image: url(splander.png);
background-position: bottom;
background-size: cover;
background-attachment: fixed;
}
#bg-2 {
background-image: url(https://images.pexels.com/photos/704214/pexels-photo-704214.jpeg?auto=compress&cs=tinysrgb&w=1600);
background-position: center;
background-size: cover;
background-attachment: fixed;
}
.card-hover div img {
transition: 0.3s;
filter: grayscale(100);
}
.card-hover:hover .card-body hr {
width: 100%;
border-color: #000 !important;
}
.card-hover:hover div img {
filter: grayscale(0);
}
.anime-card-bg {
background-position: center;
background-size: cover;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='320' height='360' preserveAspectRatio='none' viewBox='0 0 320 360'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1040%26quot%3b)' fill='none'%3e%3cpath d='M212.459%2c164.549C247.754%2c167.371%2c281.99%2c147.392%2c299.073%2c116.377C315.632%2c86.315%2c308.902%2c50.319%2c291.752%2c20.59C274.589%2c-9.162%2c246.806%2c-33.914%2c212.459%2c-33.769C178.314%2c-33.625%2c148.963%2c-9.589%2c134.313%2c21.253C121.451%2c48.331%2c132.564%2c77.891%2c146.917%2c104.21C162.155%2c132.153%2c180.732%2c162.012%2c212.459%2c164.549' fill='rgba(248%2c 240%2c 24%2c 0.79)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M203.663%2c274.147C214.445%2c274.043%2c224.768%2c268.694%2c229.882%2c259.201C234.77%2c250.128%2c232.573%2c239.268%2c227.187%2c230.481C222.071%2c222.134%2c213.448%2c216.749%2c203.663%2c216.427C193.257%2c216.084%2c182.821%2c220.015%2c177.294%2c228.839C171.437%2c238.191%2c170.997%2c250.18%2c176.548%2c259.717C182.067%2c269.201%2c192.691%2c274.253%2c203.663%2c274.147' fill='rgba(248%2c 240%2c 24%2c 0.79)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M309.27%2c421.812C329.536%2c420.482%2c347.614%2c411.085%2c359%2c394.267C372.233%2c374.722%2c382.249%2c350.619%2c371.801%2c329.454C360.396%2c306.351%2c335.031%2c293.995%2c309.27%2c293.526C282.627%2c293.041%2c256.006%2c304.035%2c242.671%2c327.105C229.327%2c350.192%2c231.446%2c379.819%2c246.785%2c401.632C260.279%2c420.821%2c285.861%2c423.348%2c309.27%2c421.812' fill='rgba(248%2c 240%2c 24%2c 0.79)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M-14.35 196.3 a58.79 58.79 0 1 0 117.58 0 a58.79 58.79 0 1 0 -117.58 0z' fill='rgba(248%2c 240%2c 24%2c 0.79)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M34.149%2c368.588C47.197%2c368.653%2c58.307%2c360.105%2c64.861%2c348.823C71.45%2c337.482%2c74.162%2c323.107%2c66.926%2c312.168C60.184%2c301.977%2c46.367%2c302.257%2c34.149%2c302.397C22.285%2c302.533%2c9.143%2c302.974%2c2.645%2c312.902C-4.329%2c323.557%2c-2.31%2c337.438%2c3.96%2c348.521C10.337%2c359.793%2c21.198%2c368.524%2c34.149%2c368.588' fill='rgba(248%2c 240%2c 24%2c 0.79)' class='triangle-float1'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1040'%3e%3crect width='320' height='360' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
}
.line-bg {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1127%26quot%3b)' fill='none'%3e%3cpath d='M -1023.5674562595411%2c493 C -879.57%2c408.6 -591.57%2c74.4 -303.5674562595412%2c71 C -15.57%2c67.6 128.43%2c466.4 416.4325437404588%2c476 C 704.43%2c485.6 931.72%2c133.2 1136.4325437404589%2c119 C 1341.15%2c104.8 1379.29%2c347.8 1440%2c405' stroke='rgba(255%2c 253%2c 14%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -943.8325763785838%2c82 C -799.83%2c157 -511.83%2c425.2 -223.83257637858375%2c457 C 64.17%2c488.8 208.17%2c267.2 496.1674236214162%2c241 C 784.17%2c214.8 1027.4%2c321.6 1216.1674236214162%2c326 C 1404.93%2c330.4 1395.23%2c275.6 1440%2c263' stroke='rgba(255%2c 253%2c 14%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -540.2677688842664%2c298 C -396.27%2c277.8 -108.27%2c176.4 179.73223111573358%2c197 C 467.73%2c217.6 611.73%2c427.2 899.7322311157336%2c401 C 1187.73%2c374.8 1511.68%2c77.4 1619.7322311157336%2c66 C 1727.79%2c54.6 1475.95%2c288.4 1440%2c344' stroke='rgba(255%2c 253%2c 14%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -201.13514570389145%2c70 C -57.14%2c133.8 230.86%2c365 518.8648542961085%2c389 C 806.86%2c413 950.86%2c198.4 1238.8648542961087%2c190 C 1526.86%2c181.6 1918.64%2c345.4 1958.8648542961087%2c347 C 1999.09%2c348.6 1543.77%2c227.8 1440%2c198' stroke='rgba(255%2c 253%2c 14%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -419.53467968993084%2c82 C -275.53%2c136.4 12.47%2c329.2 300.46532031006916%2c354 C 588.47%2c378.8 732.47%2c185 1020.4653203100692%2c206 C 1308.47%2c227 1656.56%2c455.6 1740.4653203100693%2c459 C 1824.37%2c462.4 1500.09%2c270.2 1440%2c223' stroke='rgba(255%2c 253%2c 14%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -276.24677894302863%2c156 C -132.25%2c206.2 155.75%2c405.6 443.75322105697137%2c407 C 731.75%2c408.4 875.75%2c179 1163.7532210569714%2c163 C 1451.75%2c147 1828.5%2c328.8 1883.7532210569714%2c327 C 1939%2c325.2 1528.75%2c188.6 1440%2c154' stroke='rgba(255%2c 253%2c 14%2c 1)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1127'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
background-size: cover;
background-attachment: fixed;
animation: linebganim 15s infinite;
}
/* flip anim */
.flip-card {
background-color: transparent;
width: 320px;
height: 240px;
perspective: 1000px;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.6s;
transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.flip-card-back {
background-color: #ffffff00;
transform: rotateY(180deg);
}
/* flip anim */
@keyframes linebganim {
50% {
background-position: center;
}
}
a div.card:hover div img {
animation: myAnim 2s ease 0s 1 normal forwards;
}
@keyframes myAnim {
0% {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(0.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, 0.95, 1);
}
100% {
transform: scale3d(1, 1, 1);
}
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "
Who are the rivals of Hero Splendor Plus?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The Hero Splendor Plus competes with several other bikes in its segment, including: Honda Shine 100 TVS Star City Plus Bajaj Platina 100."
}
},{
"@type": "Question",
"name": "What is the start type of Hero Splendor Plus?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The Hero Splendor Plus features both Kick and Self start options"
}
},{
"@type": "Question",
"name": "What is the body type of Hero Splendor?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The body type of the Hero Splendor is commuter bikes"
}
},{
"@type": "Question",
"name": "What is the Front Brake Diameter of Hero Splendor Plus?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The Front Brake Diameter of the Hero Splendor Plus is 130 mm"
}
}]
}
</script>
<script type="application/ld+json">{
"@type": "Product",
"url": "https://wheelguru.in/hero-splendor-plus",
"description": "The Hero Splendor Plus motorcycle starts at a price of Rs 75,141 and is available in India in three variants with seven color options.",
"name": " Hero Splendor Plus",
"image": [
{
"@type": "ImageObject",
"url": "https://wheelguru.in/res/bike-image/hero-splendor-plus-bikes.png",
"width": "1280",
"height": "720"
}
],
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": 4.7,
"ratingCount": 1612,
"reviewCount": 325,
"worstRating": 1,
"bestRating": 5,
"itemreviewed": "Hero Splendor Plus"
},
"review": {
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": 5,
"bestRating": 5
},
"author": {
"@type": "Person",
"name": "Saouvik Halder"
}
},
"additionalProperty": [
{
"@type": "PropertyValue",
"name": "Front Brake",
"value": "Drum",
"unitText": ""
},
{
"@type": "PropertyValue",
"name": "Rear Brake",
"value": "Drum",
"unitText": ""
},
{
"@type": "PropertyValue",
"name": "Start System",
"value": " electric start and a kick start",
"unitText": ""
},
{
"@type": "PropertyValue",
"name": "Displacement",
"value": "97.2",
"unitText": "cc"
},
{
"@type": "PropertyValue",
"name": "Mileage",
"value": "81",
"unitText": "kmpl"
},
{
"@type": "PropertyValue",
"name": "Transmission",
"value": "4 Speed gearbox",
"unitText": ""
},
{
"@type": "PropertyValue",
"name": "Fuel Capacity",
"value": "9.8",
"unitText": "litres"
},
{
"@type": "PropertyValue",
"name": "Seat Height",
"value": "785",
"unitText": "mm"
},
{
"@type": "PropertyValue",
"name": "Power",
"value": "8.02",
"unitText": "bhp"
}
],
"offers": {
"@type": "AggregateOffer",
"priceCurrency": "INR",
"lowPrice": 75141,
"highPrice": 77986,
"offerCount": 1
},
"manufacturer": {
"@type": "Organization",
"name": "HERO"
},
"brand": {
"@type": "Brand",
"name": "HERO",
"url": "https://wheelguru.in/hero-splendor-plus"
},
"model": "Raider 125",
"color": [
"Black with Silver",
"Black with Purple",
"Black with Sports Red",
"Heavy Grey with Green",
"Bumble Bee Yellow",
" Firefly Golden",
"Silver Nexus Blue"
],
"weight": {
"@type": "QuantitativeValue",
"value": 113,
"unitText": "kg"
},
"itemCondition": {
"@type": "OfferItemCondition",
"name": "NewCondition"
},
"@context": "http://schema.org"
}</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://wheelguru.in"
},{
"@type": "ListItem",
"position": 2,
"name": "Hero Splendor Plus Price, Models, Specification, wheelguru",
"item": "https://wheelguru.in/hero-splendor-plus"
}]
}
</script>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="#">
<img src="favicon-48x48.webp" alt="Wheelguru" title="Wheelguru" width="48" height="48"
loading="lazy">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav lead ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="./">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">Bike / Scooter</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="tvs-bikes">TVS Bikes</a></li>
<li><a class="dropdown-item" href="bajaj-auto">BAJAJ Auto</a></li>
<li><a class="dropdown-item" href="hero-bikes">Hero Bikes</a></li>
<li><a class="dropdown-item" href="ktm-bikes">KTM Bikes</a></li>
<li><a class="dropdown-item" href="royal-enfield">Royal Enfield</a></li>
<li><a class="dropdown-item" href="yamaha-bikes">Yamaha Bikes</a></li>
<li><a class="dropdown-item" href="jawa-bikes">JAWA Bikes</a></li>
<li><a class="dropdown-item" href="suzuki-bikes">Suzuki Bikes</a></li>
<li><a class="dropdown-item" href="honda-bikes">HONDA Bikes</a></li>
<li><a class="dropdown-item" href="yezdi-bikes">yezdi Bikes</a></li>
<li><a class="dropdown-item" href="ather-scooter">Ather Scooter</a></li>
<li><a class="dropdown-item" href="ola-scooter">Ola Scooter</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="about-us">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact-us">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faq-page">FAQ Page</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- <div class="scrollmenu text-center">
<a href="#">Home</a>
<a href="#">News</a>
<a href="#">Contact</a>
<a href="#">About</a>
<a href="#">Home</a>
<a href="#">News</a>
<a href="#">Contact</a>
<a href="#">About</a>
</div> -->
<div class="container">
<div class="row">
<div class="col-md-8 col-12">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="./">Home</a></li>
<li class="breadcrumb-item active" aria-current="hero-splendor-plus"> Hero Splendor Plus
</li>
</ol>
</nav>
<div class="card rounded-0 my-5">
<div class="card-body">
<div class="bg-light p-3">
<h1 class="lead fs-2 mt-3">Hero Splendor Plus Price, Models, Specification, wheelguru</h1>
<p class="lead fs-6">The Hero Splendor Plus motorcycle starts at a price of Rs 75,141 and is available in India in three variants with seven color options. The top-end variant begins at Rs 77,986. Powered by a 97.2 cc BS6-2.0 engine, it delivers 8.02 PS power and 8.05 Nm torque. Equipped with Drum front and rear brakes, the Hero Splendor Plus weighs 112 kg and has a fuel tank capacity of 9.8 liters.</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card rounded-0">
<div class="card-body">
<img src="res/bike-image/hero-splendor-plus-bikes.png" class="img-fluid" alt="Honda SP 125"
title="Honda SP 125">
</div>
</div>
</div>
</div>
</div>
</header>
<section class="my-5" id="spec">
<div class="container">
<div class="row">
<div class="col-12">
<div class="row">
<div class="col-4">
<div class="list-group" id="list-tab" role="tablist">
<a class="text-dark fw-bold py-1 fs-5 active" id="list-engine-list"
data-bs-toggle="list" href="#list-engine" role="tab"
aria-controls="list-engine"><img src="res/3d/icons8-engine-94.png" width="32"
height="32" alt="Engine"> Engine</a>
<a class="text-dark fw-bold py-1 fs-5" id="list-chasis-list" data-bs-toggle="list"
href="#list-chasis" role="tab" aria-controls="list-chasis"><img
src="res/3d/icons8-bike-94.png" width="32" height="32" alt="Chasis"> Chasis</a>
<a class="text-dark fw-bold py-1 fs-5" id="list-suspension-list" data-bs-toggle="list"
href="#list-suspension" role="tab" aria-controls="list-suspension"><img
src="res/3d/icons8-suspension-dampers-96.png" width="32" height="32" alt="Fuel">
Suspension</a>
<a class="text-dark fw-bold py-1 fs-5" id="list-tyre-list" data-bs-toggle="list"
href="#list-tyre" role="tab" aria-controls="list-tyre"><img
src="res/3d/icons8-tyre-94.png" width="32" height="32" alt="Chasis"> Tyre</a>
<a class="text-dark fw-bold py-1 fs-5" id="list-brakes-list" data-bs-toggle="list"
href="#list-brakes" role="tab" aria-controls="list-brakes"><img
src="res/3d/icons8-brake-92.png" width="32" height="32" alt="Fuel"> Brakes</a>
<a class="text-dark fw-bold py-1 fs-5" id="list-electricals-list" data-bs-toggle="list"
href="#list-electricals" role="tab" aria-controls="list-electricals"><img
src="res/3d/icons8-tesla-supercharger-pin-94.png" width="32" height="32"
alt="Fuel"> Electricals</a>
<a class="text-dark fw-bold py-1 fs-5" id="list-fuel-list" data-bs-toggle="list"
href="#list-fuel" role="tab" aria-controls="list-fuel"><img
src="res/3d/icons8-fuel-94.png" width="32" height="32" alt="Fuel"> Fuel</a>
</div>
</div>
<div class="col-8">
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="list-engine" role="tabpanel"
aria-labelledby="list-engine-list">
<p class="lead ps-3 mb-0">Displacement
<span class="text-danger fs-4">97.2</span> cc
</p>
<p class="lead ps-3 mb-0">Max Power <span
class="text-danger fs-4">8.02 PS</span> at 8000 rpm</p>
<p class="lead ps-3 mb-0">Max Torque
<span class="text-danger fs-4"> 8.05 Nm </span>at 6000 rpm
</p>
<p class="lead ps-3 mb-0">Emission Type<span class="text-danger fs-4"> BS6</span></p>
<!-- <p class="lead ps-3 mb-0">Bore
<span class="text-danger fs-4">56</span> mm
</p>
<p class="lead ps-3 mb-0">Stroke
<span class="text-danger fs-4"> 62.9</span> mm
</p> -->
<p class="lead ps-3 mb-0"><span class="text-danger fs-4">5 </span>Speed Gearbox</p>
<p class="lead ps-3 mb-0">Pattern
<span class="text-danger fs-4">N</span>-
<span class="text-dark fs-4">1</span>-
<span class="text-danger fs-4">2</span>-
<span class="text-danger fs-4">3</span>-
<span class="text-danger fs-4">4</span>
</p>
</div>
<div class="tab-pane fade" id="list-chasis" role="tabpanel"
aria-labelledby="list-chasis-list">
<p class="lead mb-1 ps-3">Length <span class="text-danger fs-4">2005 </span>mm</p>
<p class="lead mb-1 ps-3">Height <span class="text-danger fs-4">1035</span>mm</p>
<p class="lead mb-1 ps-3">Width <span class="text-danger fs-4">715</span>mm</p>
<p class="lead mb-1 ps-3">Wheel Base <span class="text-danger fs-4">1340</span>mm
</p>
<p class="lead mb-1 ps-3">Ground Clearance <span
class="text-danger fs-4">165</span>mm
</p>
<p class="lead ps-3">Kerb Weight <span class="text-danger fs-4">148</span>KG</p>
<p class="lead text-danger ps-3">Color options: <span class="text-dark">Black with Silver, Black with Purple, Black with Sports Red, Heavy Grey with Green, Bumble Bee Yellow, Firefly Golden, Silver Nexus Blue.</p>
</div>
<div class="tab-pane fade" id="list-suspension" role="tabpanel"
aria-labelledby="list-suspension-list">
<p class="lead"><strong class="fw-bold">Suspension : Front</strong></p>
<p class="lead ps-3">Telescopic</p>
<p class="lead"><strong class="fw-bold">Suspension : Rear</strong></p>
<p class="lead ps-3"> Hydraulic shock absorber <br>
<!-- <span class="text-danger fs-4">5 </span>step Adjustment,
<br>Gas Charged -->
</p>
</div>
<div class="tab-pane fade" id="list-tyre" role="tabpanel"
aria-labelledby="list-tyre-list">
<p class="lead mb-1"><strong class="fw-bold">Front Tyre </strong></p>
<p class="lead mb-1 ps-3">
<span class="text-danger fs-4">80</span>
<span class="text-dark fs-4">/</span>
<span class="text-danger fs-4">100</span> -
<span class="text-danger fs-4">18</span> <br> <br>
Tyre Pressure <span class="text-danger fs-4">25</span>
</p>
<p class="lead mb-1"><strong class="fw-bold">Rear Tyre </strong></p>
<p class="lead mb-1 ps-3">
<span class="text-danger fs-4">80</span>
<span class="text-dark fs-4">/</span>
<span class="text-danger fs-4">100</span> -
<span class="text-danger fs-4">18</span> <br>Tubeless, <br>
Tyre Pressure <span class="text-danger fs-4">32</span>
</p>
</div>
<div class="tab-pane fade" id="list-brakes" role="tabpanel"
aria-labelledby="list-brakes-list">
<p class="lead"><strong class="fw-bold">Front Drum </strong></p>
<!-- <p class="lead ps-3">Disc <span class="text-danger fs-4">266</span> mm</p> -->
<p class="lead"><strong class="fw-bold">Rear Drum </strong></p>
<!-- <p class="lead ps-3"><span class="text-danger fs-4">130</span> mm <br></p> -->
</div>
<div class="tab-pane fade" id="list-electricals" role="tabpanel"
aria-labelledby="list-electricals-list">
<p class="lead"><strong class="fw-bold">Headlamp </strong> : Halogen</p>
<p class="lead"><strong class="fw-bold">Tail Lamp </strong> : Halogen</p>
<p class="lead fw-bold"><strong>Battery </strong></p>
<p class="lead ps-3">Specification :
<span class="text-danger fs-4">12</span>V
<span class="text-danger fs-4">3</span>Ah
</p>
<p class="lead ps-3">Feature : <span class="fs-6">Maintenance Free Battery</span>
</p>
</div>
<div class="tab-pane fade" id="list-fuel" role="tabpanel"
aria-labelledby="list-fuel-list">
<p class="lead fw-bold"><strong>Fuel Tank </strong></p>
<p class="lead ps-3">Capacity : <span class="text-danger fs-4">9.8</span> litre</p>
<p class="lead fw-bold"><strong>Engine Oil </strong></p>
<p class="lead ps-3">Quantity : <span class="text-danger fs-4">950</span> ml</p>
<p class="lead ps-3">Grade : <span class="fs-6"><br>4T oil (10W30) ml</span>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-md-8 col-12">
<div class="card bg-light border-0 my-5">
<div class="card-body">
<h2 class="lead fs-2">Why Choose the Hero Splendor?</h2>
<p class="lead fs-6">The Hero Splendor has been a trusted companion for Indian riders for
almost three decades. It combines affordability, performance, and style in a single
package. Here's why you should consider choosing the Hero Splendor for your next ride:
<br> <strong>Proven Track Record:</strong> With millions of units sold and countless
satisfied riders, the
Hero Splendor has a proven track record of reliability and performance.
<br> <strong>Economic Riding:</strong> The exceptional fuel efficiency of the Splendor
means you'll save on
fuel costs, making it an economical choice for daily commuting.
<br> <strong>Timeless Design:</strong> The iconic design of the Splendor ensures that
you'll never go out of
style. It's a bike that looks as good as it performs.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card border-0 my-5">
<div class="card-body">
<ul class="list-group list-group-flush lead border-end border-danger text-end fs-6"
style="width: 20rem;">
<li class="list-group-item border-0 pe-5">On road price - <span
class="text-danger fw-bold fs-4">₹78 </span>Thousand</li>
<li class="list-group-item border-0 pe-5">Fuel economy - <span
class="text-danger fw-bold fs-4"> 65 to 81 </span>km/l </li>
<li class="list-group-item border-0 pe-5">Curb weight - <span
class="text-danger fw-bold fs-4">113 </span>kg</li>
<li class="list-group-item border-0 pe-5">Max speed - <span
class="text-danger fw-bold fs-4">87 to 93</span>km/h</li>
<li class="list-group-item border-0 pe-5">Seat height - <span
class="text-danger fw-bold fs-4">785 to 799</span>mm</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="shape-bg py-5">
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<img class="float-end p-3" src="res/3d/icons8-engine-94.png" alt="">
<p class="lead fs-5 text-center"><strong>Design and Styling
</strong></p>
<hr class="w-50">
<p class="lead fs-6">The Hero Splendor Plus boasts a timeless design that combines the
classic with the contemporary. Its sleek lines and attractive graphics make it stand out
on the road. With a comfortable and ergonomic seating position, it ensures that long
rides are a breeze.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<img class="float-end p-4" src="res/3d/icons8-tyre-94.png" alt="">
<p class="lead fs-5 text-center"><strong> Performance
</strong></p>
<hr class="w-50">
<p class="lead fs-6">At the heart of the Splendor Plus is its robust 97.2cc engine, which
delivers a commendable 8.02 bhp of power and 8.05 Nm of torque. This power-packed engine
ensures that the bike handles city traffic and highways with ease.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<img class="float-end p-4" src="res/3d/icons8-bluetooth-94.png" alt="">
<p class="lead fs-5 text-center"><strong> Mileage
</strong></p>
<hr class="w-50">
<p class="lead fs-6">One of the Splendor Plus's key highlights is its remarkable fuel
efficiency. With an impressive mileage of over 70 km per liter, it's an ideal choice for
those looking to save on fuel costs.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<img class="float-end p-4" src="res/3d/icons8-engine-94.png" alt="">
<p class="lead fs-5 text-center"><strong>Technology
</strong></p>
<hr class="w-50">
<p class="lead fs-6">The bike comes equipped with the i3S technology, which automatically
shuts off the engine when idle and restarts it when you're ready to roll. This feature
not only enhances fuel efficiency but also reduces emissions.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="bg-1">
<div class="container">
<div class="row">
<div class="col-12">
<div class="card bg-transparent border-0 my-5 py-5">
<div class="card-body text-center text-white white-text-shadow">
<h2 class="fw-bold">
<span class="fw-bold display-4">Hero Splendor Plus </span><br>
<span class="h5">has the following </span><br>
<span>specifications</span>
</h2>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section class="shape-bg py-5">
<div class="container">
<div class="row">
<div class="col-md-4 col-12">
<div class="card my-4">
<div class="card-body">
<ul class="lead fs-6">
<li>Engine: Air cooled, 4-stroke, Single cylinder, OHC</li>
<li>Power: 8.02 PS @ 8000 rpm</li>
<li>Torque: 8.05 Nm @ 6000 rpm</li>
<li>Transmission: Four-speed constant mesh</li>
<li>Start System: Electric and kick</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card shadow mb-4">
<div class="card-body">
<ul class="lead fs-6">
<li>Front suspension: Telescopic fork</li>
<li>Rear suspension: Mono shock absorbers</li>
<li>Front brake: Drum </li>
<li>Rear brake: Drum</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card my-4">
<div class="card-body">
<ul class="lead fs-6">
<li>Clutch: Wet multiplate</li>
<li>Analogue speedometer</li>
<li>Wheelbase: 1236 mm</li>
<li>Ground clearance: 165 mm</li>
<li>Seat height: 785 mm</li>
<li>Kerb weight: 112 kg</li>
<li>Fuel tank capacity: 10 litres</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="container-fluid my-5">
<div class="col-12">
<p class="text-center lead fs-1 mt-5">Available Colors</p>
<nav class="nav justify-content-center mb-5">
<a class="nav-link" href="#">
<div class="color-box rounded-circle shadow-sm" style="background-color: #F44336;"></div>
</a>
<a class="nav-link" href="#">
<div class="color-box rounded-circle shadow-sm" style="background-color: #0277BD;"></div>
</a>
<a class="nav-link" href="#">
<div class="color-box rounded-circle shadow-sm" style="background-color: #FAFAFA;"></div>
</a>
<a class="nav-link" href="#">
<div class="color-box rounded-circle shadow-sm" style="background-color: #212121;"></div>
</a>
<a class="nav-link" href="#">
<div class="color-box rounded-circle shadow-sm" style="background-color: #FFEA00;"></div>
</a>
</nav>
</div>
<div class="row">
<div class="col-md-3 col-12 px-0">
<div class="card border-0 px-0">
<div class="card-body px-0">
<img class="img-fluid" src="street-400-fb6.jpeg" alt="" width="500" height="500">
<p class="lead text-center fw-bold fs-4 mt-3">Triumph Speed 400</p>
</div>
</div>
</div>
<div class="col-md-3 col-12 px-0">
<div class="card border-0 px-0">
<div class="card-body px-0">
<img class="img-fluid" src="street-400-fb4.jpeg" alt="" width="500" height="500">
<p class="lead text-center fw-bold fs-4 mt-3">Triumph Speed 400</p>
</div>
</div>
</div>
<div class="col-md-3 col-12 px-0">
<div class="card border-0 px-0">
<div class="card-body px-0">
<img class="img-fluid" src="street-400-fb6.jpeg" alt="" width="500" height="500">
<p class="lead text-center fw-bold fs-4 my-3">Triumph Speed 400</p>
</div>
</div>
</div>
<div class="col-md-3 col-12 px-0">
<div class="card border-0 px-0">
<div class="card-body px-0">
<img class="img-fluid" src="street-400-fb4.jpeg" alt="" width="500" height="500">
<p class="lead text-center fw-bold fs-4 my-3">Triumph Speed 400</p>
</div>
</div>
</div>
</div>
</div> -->
</section>
<section class="shape-bg py-5">
<div class="container">
<div class="row">
<div class="col-12">
<div class="card mb-4">
<div class="card-body">
<img class="float-end" width="100" src="res/Motocross-rafiki.png" alt="">
<h2 class="lead fs-2">Hero Splendor Plus Engine Specifications</h2>
<p class="lead fs-6">The heart of any motorcycle is its engine, and the Hero Splendor Plus
boasts a powerful and efficient one. Let's dive into the specifications:
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-6"><span class="fw-bold">Engine Type : </span>The Hero Splendor Plus is
powered by a 97.2 cc, single-cylinder, air-cooled engine. This engine is known for its
efficient and reliable performance, making it a popular choice among riders for daily
commuting and more.</p>
<p class="lead fs-6"><span class="fw-bold">Max Power : </span>The engine of the Hero
Splendor Plus produces a maximum power output of 7.91 bhp (brake horsepower) at 8,000
rpm. This power level provides ample acceleration and ensures that the motorcycle is
responsive in various riding situations.
</p>
<p class="lead fs-6"><span class="fw-bold">Max Torque : </span>The engine generates a peak
torque of 8.05 Nm (Newton-meters) at 6,000 rpm. This torque rating is crucial for
maintaining speed and performance, especially when riding with a passenger or carrying
cargo.</p>
<p class="lead fs-6"><span class="fw-bold">Bore x Stroke : </span>The engine's bore and
stroke dimensions are 50.0 mm x 49.5 mm. These dimensions contribute to the engine's
overall efficiency and power delivery. The bore represents the diameter of the engine
cylinder, while the stroke represents the length of the piston's movement within the
cylinder.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-6"><span class="fw-bold">Cylinder Configuration : </span>The Hero Splendor
Plus features a single-cylinder configuration. This design is optimal for efficient fuel
combustion and ensures a smooth and balanced ride.</p>
<p class="lead fs-6"><span class="fw-bold">Cooling System : </span> The engine is
air-cooled, which helps in maintaining an optimal operating temperature. This design is
cost-effective, requires less maintenance, and is known for its reliability.
The engine of the Hero Splendor Plus is designed to deliver a harmonious balance of
power and efficiency. It's this equilibrium that makes it a favored choice for daily
commuting and shorter trips. Whether you're navigating through city traffic, cruising on
highways, or riding on country roads, the engine's specifications ensure a dependable
and satisfying riding experience.
The 97.2 cc engine is a hallmark of the Hero Splendor Plus, and it serves as the
foundation for the motorcycle's efficiency, reliability, and popularity among riders.
Whether you're a seasoned rider or new to motorcycling, the specifications of the Hero
Splendor Plus's engine are tailored to meet your needs and provide an enjoyable riding
experience.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="shape-bg">
<div class="container my-5">
<div class="col-12">
<h3 class="lead fs-2 my-5">Similar bike you can check</h3>
</div>
<div class="row">
<div class="col-md-4 col-12">
<div class="card">
<img class="card-img-top" src="hunter1.jpg">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Hunter</strong> <span class="fs-2">350</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>20.2</strong></div>
<div class="col">Max torque <strong>27</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>350cc</strong></p>
<p class="text-center fs-5"><strong>1.99L</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card">
<img class="card-img-top" src="trymp1.jpeg">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Triumph</strong> speed <span
class="fs-2">400</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>20.2</strong></div>
<div class="col">Max torque <strong>27</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>350cc</strong></p>
<p class="text-center fs-5"><strong>1.99L</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card">
<img class="card-img-top" src="harley2.jpeg">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Harley</strong> Davidson <span
class="fs-2">x440</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>20.2</strong></div>
<div class="col">Max torque <strong>27</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>350cc</strong></p>
<p class="text-center fs-5"><strong>1.99L</strong> Ex-showroom</p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section id="brands">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="text-start text-center lead fs-1 fw-bold my-5">Brands In India</h2>
</div>
</div>
</div>
<div class="container card rounded mb-5">
<div class="row">
<div class="col-lg-2 col-md-3 col-6">
<a class="streched-link" href="tvs-bikes">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/tvs-logo.jpg" alt="TVS Two Wheeler Bikes"
title="TVS Two Wheeler Bikes" loading="lazy" width="132" height="74">
</div>
</div>
</a>
</div>
<div class="col-lg-2 col-md-3 col-6">
<a class="streched-link" href="bajaj-auto">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/bajaj-logo.jpg" alt="BAJAJ Two Wheeler Bikes"
title="BAJAJ Two Wheeler Bikes" loading="lazy" width="132" height="74">
</div>
</div>