-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtvs-bikes.html
1068 lines (1031 loc) · 66.2 KB
/
tvs-bikes.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/tvs-bikes">
<!-- 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>TVS Bikes Price, Models, Specification, by Wheelguru</title>
<meta name="title" content="TVS Bikes Price, Models, Specification, by Wheelguru" />
<meta name="description"
content="In the dynamic landscape of the two-wheeler industry, TVS Bike Company has emerged as a trailblazer, consistently setting new benchmarks for performance." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://wheelguru.in/tvs-bikes" />
<meta property="og:title" content="TVS Bikes Price, Models, Specification, by Wheelguru" />
<meta property="og:description"
content="In the dynamic landscape of the two-wheeler industry, TVS Bike Company has emerged as a trailblazer, consistently setting new benchmarks for performance." />
<meta property="og:image" content="https://wheelguru.in/res/meta-image/tvs-bike.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://wheelguru.in/tvs-bikes" />
<meta property="twitter:title" content="TVS Bikes Price, Models, Specification, by Wheelguru" />
<meta property="twitter:description"
content="In the dynamic landscape of the two-wheeler industry, TVS Bike Company has emerged as a trailblazer, consistently setting new benchmarks for performance." />
<meta property="twitter:image" content="https://wheelguru.in/res/meta-image/tvs-bike.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>
.stretched-link {
text-decoration: none;
}
#bg-1 {
background-image: url(tvs1.jpeg);
background-position: center;
background-size: cover;
background-attachment: fixed;
/* height: 500px; */
}
#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;
}
.bg-duo {
background: rgb(255, 255, 255);
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 50%);
}
.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;
}
.shape-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%23SvgjsMask1455%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/rect%3e%3crect width='213.6' height='213.6' clip-path='url(%26quot%3b%23SvgjsClipPath1456%26quot%3b)' x='215.91' y='274.05' fill='url(%26quot%3b%23SvgjsPattern1457%26quot%3b)' transform='rotate(319.02%2c 322.71%2c 380.85)'%3e%3c/rect%3e%3crect width='336' height='336' clip-path='url(%26quot%3b%23SvgjsClipPath1458%26quot%3b)' x='150.57' y='358.28' fill='url(%26quot%3b%23SvgjsPattern1459%26quot%3b)' transform='rotate(284.32%2c 318.57%2c 526.28)'%3e%3c/rect%3e%3ccircle r='90.58773545714064' cx='550.55' cy='260.96' stroke='rgba(255%2c 234%2c 0%2c 1)' stroke-width='2.79' stroke-dasharray='3%2c 3'%3e%3c/circle%3e%3cpath d='M579.49 271.14L580.59 258.38 593.28 256.65 594.38 243.89 607.07 242.17 608.17 229.41 620.86 227.68' stroke='rgba(255%2c 234%2c 0%2c 1)' stroke-width='1.62' stroke-dasharray='4%2c 4'%3e%3c/path%3e%3cpath d='M931.27 347.91L938.43 337.29 950.36 341.95 957.52 331.33 969.45 335.98 976.61 325.37 988.54 330.02M933.66 355.55L940.82 344.93 952.75 349.58 959.91 338.97 971.84 343.62 979 333 990.93 337.66' stroke='rgba(244%2c 67%2c 54%2c 1)' stroke-width='1.63' stroke-dasharray='3%2c 2'%3e%3c/path%3e%3cpath d='M993.23 117.84 L907.14 166.58999999999997L998.517799040826 190.54779904082613z' stroke='rgba(2%2c 119%2c 189%2c 1)' stroke-width='2.42' stroke-dasharray='3%2c 3'%3e%3c/path%3e%3ccircle r='66.5126594244899' cx='141.85' cy='452.87' stroke='rgba(244%2c 67%2c 54%2c 1)' stroke-width='1'%3e%3c/circle%3e%3crect width='95' height='95' clip-path='url(%26quot%3b%23SvgjsClipPath1460%26quot%3b)' x='1190.16' y='112.99' fill='url(%26quot%3b%23SvgjsPattern1461%26quot%3b)' transform='rotate(189.54%2c 1237.66%2c 160.49)'%3e%3c/rect%3e%3cpath d='M1021.49 7.93a5.6 5.6 0 1 0-10.69-3.37 5.6 5.6 0 1 0 10.69 3.37zM1006.23 3.11a5.6 5.6 0 1 0-10.68-3.37 5.6 5.6 0 1 0 10.68 3.37zM990.97-1.7a5.6 5.6 0 1 0-10.68-3.37 5.6 5.6 0 1 0 10.68 3.37zM975.71-6.52a5.6 5.6 0 1 0-10.68-3.37 5.6 5.6 0 1 0 10.68 3.37zM1056.82 2.29a5.6 5.6 0 1 0-10.68-3.37 5.6 5.6 0 1 0 10.68 3.37zM1041.56-2.52a5.6 5.6 0 1 0-10.68-3.37 5.6 5.6 0 1 0 10.68 3.37zM1026.3-7.33a5.6 5.6 0 1 0-10.68-3.37 5.6 5.6 0 1 0 10.68 3.37zM1011.04-12.15a5.6 5.6 0 1 0-10.68-3.37 5.6 5.6 0 1 0 10.68 3.37z' fill='rgba(255%2c 234%2c 0%2c 1)'%3e%3c/path%3e%3crect width='274.12' height='274.12' clip-path='url(%26quot%3b%23SvgjsClipPath1462%26quot%3b)' x='1252.45' y='183.11' fill='url(%26quot%3b%23SvgjsPattern1463%26quot%3b)' transform='rotate(149.36%2c 1389.51%2c 320.17)'%3e%3c/rect%3e%3cpath d='M95.24 439.02L89.82 450.63 77.31 447.89 71.9 459.5 59.39 456.76 53.97 468.36 41.46 465.63M91.69 431.85L86.28 443.46 73.77 440.72 68.35 452.33 55.84 449.59 50.42 461.19 37.91 458.46M88.15 424.68L82.73 436.29 70.22 433.55 64.8 445.16 52.29 442.42 46.88 454.02 34.37 451.29' stroke='rgba(2%2c 119%2c 189%2c 1)' stroke-width='1.93'%3e%3c/path%3e%3cpath d='M347.55 72.21L341.87 60.73 351.81 52.66 346.12 41.19 356.07 33.12 350.38 21.65 360.33 13.58M355.37 73.91L349.68 62.43 359.63 54.37 353.94 42.89 363.89 34.83 358.2 23.35 368.14 15.28' stroke='rgba(255%2c 234%2c 0%2c 1)' stroke-width='2.54'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1455'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cpattern x='0' y='0' width='7.12' height='7.12' patternUnits='userSpaceOnUse' id='SvgjsPattern1457'%3e%3cpath d='M0 7.12L3.56 0L7.12 7.12' stroke='rgba(2%2c 119%2c 189%2c 1)' fill='none'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath1456'%3e%3ccircle r='53.4' cx='322.71' cy='380.85'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='6' height='6' patternUnits='userSpaceOnUse' id='SvgjsPattern1459'%3e%3cpath d='M0 6L3 0L6 6' stroke='rgba(244%2c 67%2c 54%2c 1)' fill='none'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath1458'%3e%3ccircle r='84' cx='318.57' cy='526.28'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='9.5' height='9.5' patternUnits='userSpaceOnUse' id='SvgjsPattern1461'%3e%3cpath d='M0 9.5L4.75 0L9.5 9.5' stroke='rgba(255%2c 234%2c 0%2c 1)' fill='none'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath1460'%3e%3ccircle r='23.75' cx='1237.66' cy='160.49'%3e%3c/circle%3e%3c/clipPath%3e%3cpattern x='0' y='0' width='12.46' height='12.46' patternUnits='userSpaceOnUse' id='SvgjsPattern1463'%3e%3cpath d='M6.23 1L6.23 11.46M1 6.23L11.46 6.23' stroke='rgba(2%2c 119%2c 189%2c 1)' fill='none' stroke-width='2.56'%3e%3c/path%3e%3c/pattern%3e%3cclipPath id='SvgjsClipPath1462'%3e%3ccircle r='68.53' cx='1389.51' cy='320.17'%3e%3c/circle%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
background-size: cover;
background-repeat: no-repeat;
}
.carousel-caption {
position: absolute;
width: 70%;
right: 15%;
left: 15%;
top: 30%;
text-align: center;
text-shadow: #000000 0px 0px 4px;
}
div a.stretched-link:hover div {
animation: myAnim 2s ease 0s 1 normal forwards;
}
.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");
}
@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);
}
}
@keyframes linebganim {
50% {
background-position: center;
}
}
img#logo-anim {
animation: shake 0.5s;
animation-iteration-count: infinite;
}
@keyframes shake {
0% {
transform: translate(1px, 1px) rotate(0deg);
}
10% {
transform: translate(-1px, -2px) rotate(-1deg);
}
20% {
transform: translate(-3px, 0px) rotate(1deg);
}
30% {
transform: translate(3px, 2px) rotate(0deg);
}
40% {
transform: translate(1px, -1px) rotate(1deg);
}
50% {
transform: translate(-1px, 2px) rotate(-1deg);
}
60% {
transform: translate(-3px, 1px) rotate(0deg);
}
70% {
transform: translate(3px, 1px) rotate(-1deg);
}
80% {
transform: translate(-1px, -1px) rotate(1deg);
}
90% {
transform: translate(1px, 2px) rotate(0deg);
}
100% {
transform: translate(1px, -2px) rotate(-1deg);
}
}
</style>
</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="container">
<div class="row">
<div class="col-md-8 col-12">
<div class="card border-0 my-5">
<div class="card-body">
<h1 class="lead fs-2 mb-4">
<span class="lead d-block fs-3">TVS Bikes Price, Models, Specification, by Wheelguru
</h1>
<p class="lead fs-6">In the dynamic landscape of the two-wheeler industry, TVS Bike Company
has emerged as a trailblazer, consistently setting new benchmarks for performance,
innovation, and customer satisfaction. With a legacy spanning decades, TVS has etched
its name in the hearts of motorcycle enthusiasts and commuters alike. This article
delves into the captivating journey, exceptional features, and the high-value Google
Trends following keywords that have propelled TVS to the pinnacle of the industry.The
Founded in 1979, TVS Bike Company has steadily evolved into a global powerhouse,
recognized for its commitment to excellence and unwavering dedication to delivering
top-notch two-wheelers. With a vision to craft vehicles that blend cutting-edge
technology with unmatched reliability, TVS has consistently remained at the forefront of
innovation, captivating the market.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card border-0 mb-5">
<div class="card-body">
<a href="tvs-raider-125" class="d-block text-end text-dark fs-5 my-3">TVS Raider 125</a>
<a href="tvs-raider-125" class="d-block text-end text-dark fs-5">TVS RTR</a>
<img src="res/brand-logo/tvs-logo120x40.jpg" class="float-end my-4" width="120" height="40"
alt="TVS Bike Logo" title="TVS Bike Logo" loading="lazy">
<!-- <ul class="list-group list-group-flush lead text-end fs-5 my-4" style="width: 300px;">
<a class="streched-link" href="ktm.html">
<li class="list-group-item border-0"> <strong>TVS RR 310</strong></li>
</a>
<a href="tvs-raider-125">
<li class="list-group-item border-0"> <strong>TVS Raider 125</strong></li>
</a>
<a class="streched-link" href="ktm.html">
<li class="list-group-item border-0"> <strong>TVS Ronin 250</strong></li>
</a>
<a class="streched-link" href="rtr.html">
<li class="list-group-item border-0"> <strong> TVS RTR 200</strong></li>
</a>
<a class="streched-link" href="ktm.html">
<li class="list-group-item border-0"> <strong>TVS RTR 160</strong> </li>
</a>
<a class="streched-link" href="ktm.html">
<li class="list-group-item border-0"> <strong>TVS Starcity 110</strong></li>
</a>
<a class="streched-link" href="ktm.html">
<li class="list-group-item border-0"> <strong>TVS Iqube</strong></li>
</a>
<a href="tvs-rtr">
<li class="list-group-item border-0"> <strong>TVS RTR</strong></li>
</a>
</ul> -->
</div>
</div>
</div>
</div>
</div>
</header>
<section class="shape-bg">
<div class="container-fluid" id="bg-2">
<div class="row">
<div class="col-md-8 col-12"></div>
<div class="col-md-4 col-12">
<div class="card anime-card-bg border-0 my-5" style="width: 20rem;">
<div class="card-body p-5">
<h2 class="lead text-danger fw-bold display-6">TVS</h2>
<hr class="w-25 my-4">
<ul class="list-group lead mb-5">
<li class="list-group-item bg-transparent border-0 p-0"><span
class="bg-warning rounded fs-4">🔖</span> Bike's Price </li>
<li class="list-group-item bg-transparent border-0 p-0"><span
class="bg-warning rounded fs-4">🏍️</span> Models
</li>
<li class="list-group-item bg-transparent border-0 p-0"><span
class="bg-warning rounded fs-4">📦</span> Specifications</li>
</ul>
<div class="">
<a href="contact-us"
class="btn btn-outline-danger rounded shadow-none px-4 py-2">Explore
Now</a>
</div>
</div>
</div>
<!-- <div class="my-5 py-5">
<h1 class="lead text-white text-end">
<span class="fw-bold display-6">TVS Bikes Price, Models, Specification,
by</span>
<span class="display-3">
Wheelguru </span><br />
</h1>
<p class="text-end my-5">
<a href="contact-us" class="btn btn-danger rounded-pill shadow-none px-5">Emi
Calculator</a>
</p>
</div> -->
</div>
</div>
</div>
</section>
<section class="my-5">
<div class="container">
<div class="row">
<div class="col-md-8 col-12">
<div class="card my-5 rounded-0">
<div class="card-body">
<div class="bg-light p-3">
<h2 class="lead fs-2">A Legacy of Excellence - </h2>
<p class="lead fs-5 mb-0">TVS Motors has a proud legacy of innovation, performance, and
durability. With over four decades of experience in the industry, they have carved a
niche for themselves as a brand synonymous with trust and reliability.</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/Tvs-Ntorq-125-Red.webp" height="250"
class="d-block mx-auto img-fluid" alt="TVS NTORQ 125 Scooty"
title="TVS NTORQ 125 Scooty">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="shape-bg my-5" id="lineup">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="text-center lead fs-2 mt-4">TVS Bikes - A Diverse Lineup</h2>
</div>
</div>
</div>
<div class="container my-5">
<div class="row">
<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"><strong>Performance-driven Models</strong></p>
<hr class="w-25 my-4">
<p class="lead fs-6">TVS offers a wide range of bikes designed for riders who crave
adrenaline. From the Apache series known for its sporty appeal to the impressive RR310
with its powerful engine, TVS caters to enthusiasts seeking speed and precision.
</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-money-bag-rupee-96.png" alt="">
<p class="lead fs-5"><strong>Economical Commuters</strong></p>
<hr class="w-25 my-4">
<p class="lead fs-6">For those looking for a dependable daily commute companion, TVS has a
plethora of options. Models like the Radeon and Star City Plus combine fuel efficiency
with comfort, making them ideal choices for urban commuters.</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-start-96.png" alt="">
<p class="lead fs-5"><strong>TVS Scooties: Navigating the City</strong></p>
<hr class="w-25 my-4">
<p class="lead fs-6">TVS scooties are a hit among city dwellers. With agile handling and
compact designs, scooties like Jupiter and NTorq make weaving through traffic a breeze.
These scooties also prioritize safety with features like CBS (Combined Braking System)
and Bluetooth.
</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-gear-94.png" alt="">
<p class="lead fs-5"><strong>Innovation and Technology</strong></p>
<hr class="w-25 my-4">
<p class="lead fs-6">TVS continually pushes the boundaries of innovation and technology in
the two-wheeler industry. Their products boast cutting-edge features such as smartphone
connectivity and ride modes.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="shape-bg my-5" id="bikes">
<div class="container my-5">
<div class="row">
<div class="col-12">
<h2 class="text-center lead fs-2 my-4">TVS Bikes</h2>
</div>
</div>
<div class="row">
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/TVS Apache - RTR 4v.webp" alt="TVS Apache RTR 4v"
title="TVS Apache RTR 4v">
<div class="card-body">
<p class="lead text-center fs-4"><strong>TVS</strong> Apache <span class="fs-2">
RR310</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>33.5</strong></div>
<div class="col">Max torque <strong>27.3</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>312cc</strong></p>
<p class="text-center fs-5"><strong>2.72L</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/TVS Apache - RTR 4v.webp" alt="TVS Apache RTR 4v"
title="TVS Apache RTR 4v">
<div class="card-body">
<p class="lead text-center fs-4"><strong>TVS</strong> Apache <span class="fs-2">
RR310</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>35.08</strong></div>
<div class="col">Max torque <strong>28.7</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>312cc</strong></p>
<p class="text-center fs-5"><strong>2.43L</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/Tvs-200v.webp" alt="TVS Apache RTR"
title="TVS Apache RTR">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Tvs</strong> RTR <span class="fs-2">200</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>20</strong></div>
<div class="col">Max torque <strong>17</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>200cc</strong></p>
<p class="text-center fs-5"><strong>1.45L</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/Tvs-Rtr-160-white-Red.webp" alt="TVS Apache RTR"
title="TVS Apache RTR">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Tvs</strong> RTR <span class="fs-2">160</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>15</strong></div>
<div class="col">Max torque <strong>13</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong> 160cc</strong></p>
<p class="text-center fs-5"><strong>1.20L</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/Tvs-Sport-110.webp"
alt="TVS Sport 110 at Wheelguru" title="TVS Sport 110 at Wheelguru">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Tvs</strong> Sport <span class="fs-2">110</span>
</p>
<div class="row my-3">
<div class="col">Max BHp <strong>8.18</strong></div>
<div class="col">Max torque <strong>8.7</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>110cc</strong></p>
<p class="text-center fs-5"><strong>55T</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/Tvs-Star-City.webp"
alt="TVS STAR City at Wheelguru">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Tvs</strong> Star City <span
class="fs-2">110</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>8.18</strong></div>
<div class="col">Max torque <strong>8.7</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>110cc</strong></p>
<p class="text-center fs-5"><strong>55T</strong> Ex-showroom</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="shape-bg my-5" id="diversity">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="text-center lead fs-2 mt-4">The diversity of TVS Bikes</h2>
</div>
</div>
</div>
<div class="container my-5">
<div class="row">
<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-price-94.png" alt="">
<p class="lead fs-5"><strong>Key Features and Advantages</strong></p>
<hr class="w-25 my-4">
<p class="lead fs-6">TVS bikes are known for their robust build quality, superior
performance, and advanced features. With options like ABS, Bluetooth connectivity, and
EcoThrust engines, TVS ensures that every ride is safe, enjoyable, and efficient.
</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-bike-94.png" alt="">
<p class="lead fs-5"><strong>Popular TVS Bike Models</strong></p>
<hr class="w-25 my-4">
<p class="lead fs-6">When it comes to TVS bikes, there is no shortage of options. Whether
you're an enthusiast looking for a sporty ride or a commuter seeking fuel efficiency,
TVS has a bike for you. Explore the Apache series, Radeon, and the Jupiter Wego
scooters, among others, to find your perfect match.</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"><strong>The Evolution of TVS Bikes</strong></p>
<hr class="w-25 my-4">
<p class="lead fs-6">Over the years, TVS has consistently pushed the boundaries of
innovation in the motorcycle industry. The evolution of TVS bikes showcases their
dedication to providing customers with the latest technology and design.
</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-bike-94.png" alt="">
<p class="lead fs-5"><strong>Top Scooty Models by TVS</strong></p>
<hr class="w-25 my-4">
<p class="lead fs-6">Discover the TVS Scooty Zest, Jupiter, and Pep+ - each designed to
cater to specific needs. Whether you're a college-goer or a professional, TVS Scooty
offers a model tailored to your requirements. From their early models to the
cutting-edge bikes of today.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="shape-bg" id="scooty">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="text-center lead fs-2 my-5">TVS Scooter</h2>
</div>
</div>
<div class="row">
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/TVS-Scooty-Zest.webp"
alt="TVS Zest 110 at Wheelbase">
<div class="card-body">
<p class="lead text-center fs-4"><strong>TVS</strong> Zest <span class="fs-2">110</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>7.71</strong></div>
<div class="col">Max torque <strong>8.8</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>110cc</strong></p>
<p class="text-center fs-5"><strong>74T</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/TVS-Ntorq.webp" alt="TVS NTORQ 110 at Wheelbase">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Tvs</strong> NTORQ <span class="fs-2">125</span>
</p>
<div class="row my-3">
<div class="col">Max BHp <strong>9.25</strong></div>
<div class="col">Max torque <strong>10.5</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>200cc</strong></p>
<p class="text-center fs-5"><strong>86T</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/Bajaj-Ns-250.webp"
alt="TVS NTORQ 110 at Wheelbase">
<div class="card-body">
<p class="lead text-center fs-4"><strong>BAJAJ </strong>N <span
class="text-danger fs-2">250</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>7.77</strong></div>
<div class="col">Max torque <strong>8.8</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>250cc</strong></p>
<p class="text-center fs-5"><strong>76T</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/TVS-Scooty-Pep-Plus.webp"
alt="Tvs Pept 110 at Wheelguru">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Tvs </strong>Pept <span
class="text-danger fs-2">110</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>5.36</strong></div>
<div class="col">Max torque <strong>6.5</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>110</strong></p>
<p class="text-center fs-5"><strong>65T</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/Tvs-Electic-Iqube.webp"
alt="TVS iQUBE at Wheelguru">
<div class="card-body">
<p class="lead text-center fs-4"><strong>TVS</strong> iQUBE<span class="fs-2"></span></p>
<div class="row my-3">
<div class="col">Max powre <strong>4400</strong> W</div>
<div class="col">Charging time <strong>5</strong> H</div>
</div>
<p class="text-center fs-5 mb-0">Battery Capacity <strong>3.04</strong> kWh</p>
<p class="text-center fs-5"><strong>1.32L</strong> Ex-showroom</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-3">
<img class="card-img-top" src="res/bike-image/Tvs-Sport-110.webp" alt="TVS XL at Wheelguru">
<div class="card-body">
<p class="lead text-center fs-4"><strong>Tvs</strong> XL <span class="fs-2">100</span></p>
<div class="row my-3">
<div class="col">Max BHp <strong>4.3</strong></div>
<div class="col">Max torque <strong>6.5</strong> Nm</div>
</div>
<p class="text-center fs-5 mb-0">Cubic Capacity <strong>97cc</strong></p>
<p class="text-center fs-5"><strong>48T</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>
</a>
</div>
<div class="col-lg-2 col-md-3 col-6">
<a class="streched-link" href="hero-bikes">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/hero-logo.jpg" alt="HERO Two Wheeler Bikes"
title="HERO 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="ktm-bikes">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/ktm-logo.jpg" alt="KTM Two Wheeler Bikes"
title="KTM 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="royal-enfield">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/royal-enfield-logo.jpg"
alt="Royal Enfield Two Wheeler Bikes" title="Royal Enfield 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="yamaha-bikes">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/yamaha-logo.jpg"
alt="Yamaha Two Wheeler Bikes" title="Yamaha 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="jawa-bikes">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/jawa-logo.jpg" alt="JAWA Two Wheeler Bikes"
title="JAWA 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="ather-scooter">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/ather-logo.jpg" alt="ATHER Two Wheeler Bikes"
title="ATHER 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="suzuki-bikes">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/suzuki-logo.jpg"
alt="SUZUKI Two Wheeler Bikes" title="SUZUKI 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="ola-scooter">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/ola-logo.jpg" alt="OLA Two Wheeler Bikes"
title="OLA 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="honda-bikes">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/honda-logo.jpg" alt="Honda Two Wheeler Bikes"
title="Honda 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="yezdi-bikes">
<div class="card card-hover rounded-0 border-0">
<div class="card-body">
<img class="img-fluid" src="res/brand-logo/Yezdi-Logo.jpg" alt="yezdi Two Wheeler Bikes"
title="yezdi Two Wheeler Bikes" loading="lazy" width="132" height="74">
</div>
</div>
</a>
</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="120"
src="res/wheelguru-discover-the-ride-of-your-life at-wheelguru.webp"
alt="Wheelguru - Discover the Ride of Your Life at Wheelguru">
<h2 class="lead fs-2">
<span class="lead d-block fs-4">TVS Service Centers : </span>
<span class="lead d-block fs-3">Ensuring Reliability</span>
</h2>
<p class="lead fs-6 mb-0">TVS's extensive service network ensures that your vehicle
receives the care and maintenance it deserves. Learn about their service centers and how
they contribute to the longevity of your TVS ride.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<h3 class="lead h4">Understanding TVS Advantage : </h3>
<p class="lead fs-6">The TVS Advantage program is designed to enhance the overall ownership
experience. With benefits like extended warranty, hassle-free service, and exclusive
offers to TVS's commitment to the customer.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<h3 class="lead h4">Factors Influencing TVS Bike Prices : </h3>
<p class="lead fs-6">TVS offers bikes catering to various budgets, and their prices depend
on several factors. Understanding these factors can help you make an informed decision.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<h3 class="lead h4">Affordable TVS Bike Models : </h3>
<p class="lead fs-6">For budget-conscious buyers, TVS has an array of cost-effective options
that don't compromise on quality or performance. Explore the Star City Plus and Radeon
series for affordable yet reliable choices.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<h3 class="lead h4">Tips for Keeping Your TVS Vehicle in Top Condition : </h3>
<p class="lead fs-6">Proper maintenance is key to prolonging the life of your TVS bike or
Scooty. We'll provide you with some practical tips to ensure your vehicle remains in
optimal condition.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<h3 class="lead h4">Bike v/s Scooty - Pros and Cons : </h3>
<p class="lead fs-6">Choosing between a TVS bike and a Scooty depends on your preferences
and requirements. We'll compare the advantages and disadvantages of both to help you
make an informed choice.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<h3 class="lead h4">Choosing the Perfect TVS Ride : </h3>
<p class="lead fs-6">Consider your daily commute, lifestyle, and personal preferences when
selecting your TVS vehicle. With the right choice, you can enjoy a comfortable and
enjoyable ride every day.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<h3 class="lead h4">TVS Service Centers - Ensuring Reliability : </h3>
<p class="lead fs-6">TVS's extensive service network ensures that your vehicle receives the
care and maintenance it deserves. Learn about their service centers and how they
contribute to the longevity of your TVS ride.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<h3 class="lead h4">Premium TVS Bikes and Their Costs : </h3>
<p class="lead fs-6">If you're looking for top-tier performance and cutting-edge features,
TVS has premium offerings like the Apache RR 310 and Ntorq 125. Get ready to experience
the thrill of riding at its best.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="bg-dark">
<div class="container-fluid bg-duo">
<div class="row">
<div class="col-12 my-3">
<div class="text-center">
<a href="https://www.w3.org/html/logo/">
<img src="https://www.w3.org/html/logo/badge/html5-badge-h-connectivity-css3-graphics-performance-semantics.png"
width="261" height="64"
alt="HTML5 Powered with Connectivity / Realtime, CSS3 / Styling, Graphics, 3D & Effects, Performance & Integration, and Semantics"
title="HTML5 Powered with Connectivity / Realtime, CSS3 / Styling, Graphics, 3D & Effects, Performance & Integration, and Semantics">
</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-12">
<ul class="nav flex-column text-center mt-4">
<li class="nav-item">
<a class="nav-link text-white" href="./">Homepage</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="about-us">About us</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="contact-us">Contact us</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="faq-page">FAQ page</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="privacy-policy">Privacy policy</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="terms-and-conditions">Terms & condition</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 col-12">
<ul class="nav flex-column text-center mt-4">
<li class="nav-item">