-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtvs-rtr.html
1371 lines (1279 loc) · 94.5 KB
/
tvs-rtr.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-rtr">
<!-- 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 Rtr Price, Models, Specification, bikeguru </title>
<meta name="title" content="Tvs Rtr Price, Models, Specification, bikeguru" />
<meta name="description"
content="TVS RTR series, including the TVS RTR 160, TVS RTR 160 4V, TVS RTR, TVS RTR 200 4V, TVS RTR 160 price, TVS RTR 200, and TVS RTR 180. So, gear up and join us." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://wheelguru.in/tvs-rtr" />
<meta property="og:title" content="Tvs Rtr Price, Models, Specification, bikeguru" />
<meta property="og:description"
content="TVS RTR series, including the TVS RTR 160, TVS RTR 160 4V, TVS RTR, TVS RTR 200 4V, TVS RTR 160 price, TVS RTR 200, and TVS RTR 180. So, gear up and join us." />
<meta property="og:image" content="https://wheelguru.in/res/meta-image/tvs-rtr-bikes.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://wheelguru.in/tvs-rtr" />
<meta property="twitter:title" content="Tvs Rtr Price, Models, Specification, bikeguru" />
<meta property="twitter:description"
content="TVS RTR series, including the TVS RTR 160, TVS RTR 160 4V, TVS RTR, TVS RTR 200 4V, TVS RTR 160 price, TVS RTR 200, and TVS RTR 180. So, gear up and join us." />
<meta property="twitter:image" content="https://wheelguru.in/res/meta-image/tvs-rtr-bikes.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>
/* Yellow Color Code : #FFEA00 */
.y-top-bg {
background: rgb(255, 234, 0);
background: linear-gradient(185deg, rgba(255, 234, 0, 1) 40%, rgba(255, 255, 255, 0) 40%);
}
.y-bottom-bg {
background: rgb(255, 234, 0);
background: linear-gradient(5deg, rgba(255, 234, 0, 1) 40%, rgba(255, 255, 255, 0) 40%);
}
.y-left-bg {
background: rgb(255, 255, 255);
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(255, 234, 0, 1) 50%);
}
.y-right-bg {
background: rgb(255, 255, 255);
background: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, rgba(255, 234, 0, 1) 50%);
}
.y-mid-bg {
background: rgb(255, 255, 255);
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, rgba(255, 234, 0, 1) 40%, rgba(255, 234, 0, 1) 60%, rgba(255, 255, 255, 0) 60%);
}
#y-bg-anim {
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='1600' height='800' preserveAspectRatio='none' viewBox='0 0 1600 800'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1079%26quot%3b)' fill='none'%3e%3crect width='1600' height='800' x='0' y='0' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/rect%3e%3cpath d='M-133.05 26.39 a159.44 159.44 0 1 0 318.88 0 a159.44 159.44 0 1 0 -318.88 0z' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M200.004%2c385.56C276.744%2c385.239%2c360.37%2c380.936%2c403.79%2c317.66C452.203%2c247.106%2c454.747%2c151.721%2c410.87%2c78.26C367.974%2c6.442%2c283.563%2c-27.485%2c200.004%2c-23.526C123.084%2c-19.881%2c60.887%2c30.782%2c21.123%2c96.727C-20.273%2c165.38%2c-48.971%2c251.224%2c-6.761%2c319.38C34.077%2c385.32%2c122.443%2c385.885%2c200.004%2c385.56' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M-151.11 44.44 a195.55 195.55 0 1 0 391.1 0 a195.55 195.55 0 1 0 -391.1 0z' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M1336.87 -3.54 a99.59 99.59 0 1 0 199.18 0 a99.59 99.59 0 1 0 -199.18 0z' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1485.876%2c117.746C1515.293%2c118.868%2c1548.179%2c115.818%2c1563.757%2c90.84C1579.971%2c64.842%2c1572.066%2c31.477%2c1555.918%2c5.438C1540.714%2c-19.079%2c1514.722%2c-35.195%2c1485.876%2c-34.746C1457.762%2c-34.308%2c1433.41%2c-16.881%2c1419.514%2c7.562C1405.789%2c31.703%2c1403.318%2c61.48%2c1417.646%2c85.269C1431.575%2c108.395%2c1458.899%2c116.717%2c1485.876%2c117.746' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M1351.82 -18.48 a69.7 69.7 0 1 0 139.4 0 a69.7 69.7 0 1 0 -139.4 0z' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M101.325%2c869.285C144.637%2c868.767%2c176.565%2c834.759%2c199.329%2c797.908C223.722%2c758.42%2c243.862%2c712.43%2c224.188%2c670.391C201.828%2c622.611%2c153.968%2c585.082%2c101.325%2c588.493C52.346%2c591.667%2c24.579%2c640.497%2c3.258%2c684.706C-14.694%2c721.928%2c-20.216%2c763.809%2c-0.827%2c800.303C19.835%2c839.193%2c57.29%2c869.812%2c101.325%2c869.285' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M14.181%2c714.051C36.037%2c715.062%2c57.541%2c704.478%2c68.331%2c685.444C78.991%2c666.639%2c75.691%2c643.625%2c64.63%2c625.054C53.85%2c606.955%2c35.246%2c594.742%2c14.181%2c594.531C-7.247%2c594.317%2c-27.943%2c605.13%2c-38.045%2c624.028C-47.663%2c642.021%2c-42.175%2c663.16%2c-31.937%2c680.807C-21.745%2c698.376%2c-6.108%2c713.113%2c14.181%2c714.051' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M-172.37 705.71 a238.08 238.08 0 1 0 476.16 0 a238.08 238.08 0 1 0 -476.16 0z' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1544.931%2c878.42C1591.219%2c877.975%2c1628.555%2c846.614%2c1653.405%2c807.559C1680.733%2c764.609%2c1703.658%2c712.058%2c1679.187%2c667.419C1654.088%2c621.635%2c1597.074%2c607%2c1544.931%2c609.687C1497.649%2c612.124%2c1455.836%2c638.827%2c1432.679%2c680.122C1410.039%2c720.494%2c1409.978%2c769.401%2c1432.78%2c809.682C1455.931%2c850.579%2c1497.938%2c878.872%2c1544.931%2c878.42' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M1635.155%2c1054.228C1709.249%2c1055.731%2c1767.216%2c996.947%2c1802.648%2c931.857C1836.335%2c869.974%2c1845.406%2c795.11%2c1809.068%2c734.746C1773.708%2c676.007%2c1703.681%2c651.421%2c1635.155%2c653.62C1570.662%2c655.69%2c1511.708%2c689.374%2c1479.557%2c745.32C1447.52%2c801.068%2c1450.106%2c867.868%2c1479.031%2c925.293C1511.574%2c989.9%2c1562.83%2c1052.761%2c1635.155%2c1054.228' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1359.58 613.74 a54.16 54.16 0 1 0 108.32 0 a54.16 54.16 0 1 0 -108.32 0z' fill='rgba(255%2c 234%2c 0%2c 0.39)' class='triangle-float1'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1079'%3e%3crect width='1600' height='800' 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");
background-size: cover;
background-repeat: no-repeat;
}
#b-bg-anim {
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='1600' height='800' preserveAspectRatio='none' viewBox='0 0 1600 800'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1083%26quot%3b)' fill='none'%3e%3crect width='1600' height='800' x='0' y='0' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/rect%3e%3cpath d='M-141.33 34.66 a175.99 175.99 0 1 0 351.98 0 a175.99 175.99 0 1 0 -351.98 0z' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M-153.7 47.03 a200.73 200.73 0 1 0 401.46 0 a200.73 200.73 0 1 0 -401.46 0z' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M104.823%2c247.978C155.194%2c249.096%2c202.775%2c219.425%2c225.018%2c174.218C245.218%2c133.163%2c225.365%2c88.052%2c203.209%2c48.019C180.027%2c6.131%2c152.662%2c-41.11%2c104.823%2c-42.961C54.945%2c-44.891%2c15.5%2c-4.338%2c-7.698%2c39.859C-29.155%2c80.739%2c-28.434%2c128.468%2c-6.476%2c169.081C16.704%2c211.956%2c56.095%2c246.897%2c104.823%2c247.978' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1557.343%2c250.341C1609.084%2c253.418%2c1664.102%2c238.805%2c1691.328%2c194.699C1719.691%2c148.751%2c1712.421%2c90.154%2c1684.904%2c43.695C1657.943%2c-1.825%2c1610.21%2c-33.511%2c1557.343%2c-31.516C1507.335%2c-29.629%2c1468.332%2c8.234%2c1445.436%2c52.733C1424.587%2c93.254%2c1425.926%2c140.598%2c1448.382%2c180.251C1471.191%2c220.527%2c1511.139%2c247.593%2c1557.343%2c250.341' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1372.41 -39.08 a28.51 28.51 0 1 0 57.02 0 a28.51 28.51 0 1 0 -57.02 0z' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M1513.476%2c194.752C1555.537%2c195.588%2c1593.269%2c168.036%2c1612.099%2c130.416C1629.218%2c96.214%2c1617.898%2c57.352%2c1598.852%2c24.184C1579.706%2c-9.158%2c1551.899%2c-39.949%2c1513.476%2c-41.334C1473.026%2c-42.792%2c1436.181%2c-17.876%2c1416.727%2c17.618C1397.991%2c51.801%2c1402.733%2c92.414%2c1421.418%2c126.625C1441.031%2c162.534%2c1472.568%2c193.939%2c1513.476%2c194.752' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M70.67%2c804.89C107.178%2c806.045%2c144.528%2c795.398%2c164.815%2c765.024C187.394%2c731.217%2c194.757%2c685.937%2c173.094%2c651.535C152.425%2c618.711%2c109.437%2c614.167%2c70.67%2c615.516C34.844%2c616.762%2c-1.98%2c627.333%2c-20.114%2c658.256C-38.426%2c689.483%2c-32.751%2c728.599%2c-13.695%2c759.378C4.333%2c788.496%2c36.44%2c803.807%2c70.67%2c804.89' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M-157.75 691.09 a208.84 208.84 0 1 0 417.68 0 a208.84 208.84 0 1 0 -417.68 0z' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M187.636%2c1033.533C258.987%2c1031.044%2c318.704%2c985.745%2c354.923%2c924.22C391.76%2c861.644%2c406.789%2c784.95%2c371.249%2c721.628C335.062%2c657.154%2c261.548%2c628.024%2c187.636%2c626.166C109.801%2c624.209%2c27.762%2c645.451%2c-12.693%2c711.976C-54.452%2c780.647%2c-43.665%2c868.426%2c-1.167%2c936.642C38.923%2c1000.992%2c111.865%2c1036.176%2c187.636%2c1033.533' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M1523.233%2c852.813C1565.076%2c849.412%2c1588.555%2c809.423%2c1609.521%2c773.052C1630.451%2c736.744%2c1654.695%2c695.688%2c1635.195%2c658.592C1614.832%2c619.856%2c1566.994%2c609.131%2c1523.233%2c608.907C1478.981%2c608.68%2c1432.985%2c620.075%2c1409.268%2c657.436C1384.004%2c697.233%2c1384.917%2c748.66%2c1408.668%2c789.378C1432.241%2c829.791%2c1476.601%2c856.603%2c1523.233%2c852.813' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M1292.5 680.84 a188.34 188.34 0 1 0 376.68 0 a188.34 188.34 0 1 0 -376.68 0z' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1348.69 624.65 a75.96 75.96 0 1 0 151.92 0 a75.96 75.96 0 1 0 -151.92 0z' fill='rgba(2%2c 119%2c 189%2c 0.38823529411764707)' class='triangle-float2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1083'%3e%3crect width='1600' height='800' 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");
background-size: cover;
background-repeat: no-repeat;
}
.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;
}
#bg-1 {
background-image: url(res/bike-image/Tvs-200v.webp);
background-position: center;
background-size: cover;
background-attachment: fixed;
}
#bg-2 {
background-image: url(hunter2.jpg);
background-position: center;
background-size: cover;
background-attachment: fixed;
}
#bg-3 {
background: rgb(255, 255, 255);
background: linear-gradient(135deg, rgba(255, 255, 255, 0) 70%, rgba(17, 116, 0, 0.5) 70%);
}
#bg-4 {
background: rgb(255, 255, 255);
background: linear-gradient(45deg, rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, 0.25) 70%);
}
/* ul.lead li {
list-style-type: "👉";
padding: 5px 10px;
} */
.white-text-shadow {
text-shadow: 5px 5px 5px #000;
}
.color-box {
width: 38px;
height: 38px;
}
.card-head-bg {
background-image: url(res/royal-enfield-bg.png);
background-size: contain;
background-position: top right;
background-repeat: no-repeat;
height: 150px;
}
.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;
}
</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>
</header>
<!-- <div id="bg-1">
<div id="bg-3">
<div id="bg-4">
<div class="container">
<div class="row">
<div class="col-md-8 col-12"></div>
<div class="col-md-4 col-12">
<div class="my-5 py-5">
<h1 class="lead text-white text-end">
<span class="fw-bold display-6">Royal Enfield 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>
</div>
</div>
</div> -->
<section>
<div class="container shape-bg">
<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-3">Tvs Rtr Price, Models, Specification, bikeguru</h1>
<p class="lead fs-6">In the world of two-wheelers, TVS Motors has carved a niche for itself
with its remarkable RTR series. These bikes have become synonymous with power,
performance, and style, making them a top choice for riders across the globe. In this
article, we'll take an in-depth look at the TVS RTR series, including the TVS RTR 160,
TVS RTR 160 4V, TVS RTR, TVS RTR 200 4V, TVS RTR 160 price, TVS RTR 200, and TVS RTR
180. So, gear up and join us on this exciting ride through the world of TVS RTR
motorcycles.Discover the world of TVS Apache RTR motorcycles, including the TVS RTR 160,
TVS RTR 160 4V, TVS RTR 200 4V, and more. Learn about their features, prices, and why
they are a top choice for riders.</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 text-end fs-6 py-4" style="width: 300px;">
<li class="list-group-item border-0">TVS RTR 160 2V</li>
<li class="list-group-item border-0">TVS RTR 160 4V</li>
<li class="list-group-item border-0">TVS RTR 200 4V</li>
<li class="list-group-item border-0">TVS RTR 180 2V</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<div class="card bg-light border-0 my-5">
<div class="card-body">
<ul>
<li>
Introduction to TVS RTR Series
</li>
<li>
TVS RTR 160: Unleash the Power
</li>
<li>
TVS RTR 160 4V: A Leap Forward
</li>
<li>
The Legacy of TVS RTR
</li>
<li>
TVS RTR 200 4V: Dominance Redefined
</li>
<li>
Affordability and Style: TVS RTR 160 Price
</li>
<li>
7.TVS RTR 200: The Performance Beast
</li>
<li>
8.TVS RTR 180: A Balance of Power
</li>
<li>
9.Performance Comparison
</li>
<li>
10.Design and Aesthetics
</li>
<li>
11.Advanced Features
</li>
<li>
12.Riding Experience
</li>
<li>
13.Fuel Efficiency
</li>
<li>
14.Maintenance and Service
</li>
<li>
15.Conclusion: Which TVS RTR is Right for You?
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card border-0 my-5 ">
<div class="card-body">
<img src="res/bike-image/TVS Apache - RTR 4v.webp" height="300" class="d-block mx-auto img-fluid" alt="TVS RTR" title="TVS RTR">
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong> Introduction to TVS RTR Series
</strong></p>
<hr class="w-100">
<img class="float-end p-3" src="res/3d/icons8-engine-94.png" alt="">
<p class="lead fs-6">The TVS RTR series, short for "Racing Throttle Response," is a
testament to TVS Motors' commitment to delivering motorcycles that offer an exhilarating
riding experience. This series has won the hearts of riders worldwide, thanks to its
sporty design and impressive performance.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong> TVS RTR 160: Unleash the Power</strong>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-tyre-94.png" alt="">
<p class="lead fs-6">The TVS RTR 160 is where it all began. With a 159.7cc engine, it
delivers a punchy 15.12 bhp, making it a favorite among enthusiasts looking for an
affordable yet powerful ride.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong>TVS RTR 160 4V: A Leap Forward
</strong>
</p>
<hr class="w-100">
<img class="float-end p-3" src="res/3d/icons8-tyre-94.png" alt="">
<p class="lead fs-6">The TVS RTR 160 4V takes things up a notch. With a 4-valve engine, it
churns out 17.63 bhp, offering more power and better throttle response than its
predecessor.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong>The Legacy of TVS RTR
</strong>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-engine-94.png" alt="">
<p class="lead fs-6">The TVS RTR series has a rich legacy of dominating racetracks and
streets alike. Its precision engineering and cutting-edge technology have made it a
force to be
</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">TVS RTR </span><br>
<span class="h5">has the following </span><br>
<span>specifications</span>
</h2>
</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 my-5">
<div class="container">
<div class="row">
<div class="col-12">
<p class="text-center lead fs-1 mt-5">Review of TVS RTR</p>
</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">
<p class="lead fs-5 text-center"><strong>TVS RTR 200 4V: Dominance Redefined
</strong>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-engine-94.png" alt="">
<p class="lead fs-6">For riders craving even more power, the TVS RTR 200 4V is the ultimate
choice. With a 197.75cc engine and 20.82 bhp, it's built to deliver spine-tingling
acceleration
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong>Affordability and Style: TVS RTR 160 Price
</strong>
</p>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-tyre-94.png" alt="">
<p class="lead fs-6">One of the key attractions of the TVS RTR 160 is its affordability. It
offers a fantastic blend of performance and style without breaking the bank.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong>TVS RTR 200: The Performance Beast
</strong>
</p>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-tyre-94.png" alt="">
<p class="lead fs-6">The TVS RTR 200 is a beast on the road. With its muscular design and
powerful engine, it's designed for riders who crave adrenaline-pumping rides.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong>TVS RTR 180: A Balance of Power
</strong>
</p>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-engine-94.png" alt="">
<p class="lead fs-6">The TVS RTR 180 strikes a perfect balance between power and agility.
It's a versatile bike that handles both city commutes and highway cruises with ease.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong>Performance Comparison
</strong>
</p>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-engine-94.png" alt="">
<p class="lead fs-6">Let's dive deeper into the performance figures of these bikes to help
you choose the one that suits your riding style.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong>Design and Aesthetics
</strong>
</p>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-tyre-94.png" alt="">
<p class="lead fs-6">A bike's design is often a deciding factor for many riders. We'll
explore the design elements of each TVS RTR model.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong> Advanced Features
</strong>
</p>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-tyre-94.png" alt="">
<p class="lead fs-6">Modern motorcycles are loaded with advanced features. We'll look at the
tech-savvy offerings in the TVS RTR series.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong>Riding Experience
</strong>
</p>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-engine-94.png" alt="">
<p class="lead fs-6">The real joy of riding is in the experience. We'll discuss how each
bike in the TVS RTR series feels on the road.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong>Fuel Efficiency
</strong>
</p>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-engine-94.png" alt="">
<p class="lead fs-6">For practical riders, fuel efficiency is crucial. We'll analyze the
mileage figures of these bikes.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-4">
<div class="card-body">
<p class="lead fs-5 text-center"><strong> Maintenance and Service
</strong>
</p>
</p>
<hr class="w-100">
<img class="float-end p-4" src="res/3d/icons8-tyre-94.png" alt="">
<p class="lead fs-6">Owning a bike involves maintenance. We'll provide insights into the
ease of maintenance and service of TVS RTR motorcycles.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="faqs">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h3 mb-4">FAQs</h2>
<h3 class="h5 mb-4">1. Is the TVS RTR 160 suitable for beginners?</h3>
<p class="lead fs-6">The TVS RTR 160 is an excellent choice for beginners due to its manageable
power and affordability.</p>
<h3 class="h5 mb-4">2. How does the TVS RTR 200 4V compare to other bikes in its segment?</h3>
<p class="lead fs-6">The TVS RTR 200 4V stands out with its powerful engine and aggressive styling,
making it a strong contender in its segment.</p>
<h3 class="h5 mb-4">3. What sets the TVS RTR series apart from other motorcycles?</h3>
<p class="lead fs-6">The TVS RTR series is known for its racing DNA, innovative features, and
exceptional performance, setting it apart from the competition.</p>
<h3 class="h5 mb-4">4. Are TVS RTR bikes suitable for daily commuting?</h3>
<p class="lead fs-6">Yes, many TVS RTR models are suitable for daily commuting, offering a
comfortable and efficient ride.</p>
<h3 class="h5 mb-4">5. Where can I test ride a TVS RTR motorcycle?</h3>
<p class="lead fs-6">You can schedule a test ride at your nearest TVS dealership to experience the
thrill of a TVS RTR motorcycle firsthand.</p>
<p class="lead fs-6">In conclusion, the TVS RTR series offers a diverse range of motorcycles
catering to riders with varying preferences. Whether you're a newbie looking for an affordable
ride or an adrenaline junkie seeking high performance, there's a TVS RTR bike for you. So, take
the plunge and experience the thrill of the TVS RTR series today.</p>
<h3 class="h5 mb-4"> Q: What sets TVS RTR motorcycles apart from other bikes?</h3>
<p class="lead fs-6"> TVS RTR motorcycles are known for their race-inspired design, advanced
technology, and performance-oriented features. These bikes are designed to deliver a thrilling
and engaging riding experience.</p>
<h3 class="h5 mb-4"> Q: Are TVS RTR motorcycles suitable for beginners?</h3>
<p class="lead fs-6"> While TVS RTR motorcycles offer impressive performance, some models are
beginner-friendly, such as the RTR 160. It's always advisable for beginners to start with a bike
that matches their skill level.</p>
<h3 class="h5 mb-4"> Q: What is the average fuel efficiency of TVS RTR bikes?</h3>
<p class="lead fs-6"> The fuel efficiency of TVS RTR motorcycles varies depending on factors like
engine displacement and riding conditions. On average, these bikes offer competitive fuel
efficiency within their respective segments.</p>
<h3 class="h5 mb-4"> Q: Can I use TVS RTR motorcycles for daily commuting?</h3>
<p class="lead fs-6"> Yes, TVS RTR motorcycles are well-suited for daily commuting. Their
comfortable ergonomics, agile handling, and efficient engines make them a practical choice for
city riders.</p>
<h3 class="h5 mb-4"> Q: Do TVS RTR bikes come with a warranty?</h3>
<p class="lead fs-6"> Yes, TVS offers a standard warranty on all RTR motorcycles. The duration and
terms of the warranty may vary by region, so it's advisable to check with your local dealership.
</p>
<h3 class="h5 mb-4"> Q: Are TVS RTR motorcycles available in different color options?</h3>
<p class="lead fs-6">Yes, TVS RTR motorcycles typically come in a range of attractive color options,
allowing riders to choose a style that suits their preferences.</p>
</div>
</div>
</div>
</section>
<section id="varient">
<div class="container-fluid my-5">
<div class="col-12">
<p class="text-center lead fs-1 mt-5">Available variants:</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="res/bike-image/TVS Apache - RTR 4v.webp" alt="" width="500" height="500">
<p class="lead text-center fw-bold fs-4 mt-3">Tvs RR 310</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="res/bike-image/TVS Apache - RTR 4v.webp" alt="" width="500" height="500">
<p class="lead text-center fw-bold fs-4 mt-3">Tvs RTR 160</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="res/bike-image/TVS Apache - RTR 4v.webp" alt="" width="500" height="500">
<p class="lead text-center fw-bold fs-4 my-3">Tvs RTR 180</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="res/bike-image/TVS Apache - RTR 4v.webp" alt="" width="500" height="500">
<p class="lead text-center fw-bold fs-4 my-3">Tvs RTR 200</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body">
<h2 class="h3 mb-4 text-center">The Evolution of TVS Apache RTR</h2>
<h3 class="h5 mb-4 text-center">TVS RTR: A Legacy of Excellence</h3>
<p class="lead fs-6 text-center">The TVS Apache RTR series has come a long way since its
inception. From its humble beginnings to becoming a household name among motorcycle
enthusiasts, the journey of TVS RTR motorcycles is nothing short of inspiring. Let's
trace the evolution of this iconic brand.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4">TVS RTR 160: A Glimpse into Perfection</h2>
<h3 class="h5 mb-4">Unleashing the Power of TVS RTR 160</h3>
<p class="lead fs-6">When it comes to the TVS RTR series, the TVS RTR 160 stands out as a
true gem. With its remarkable features and stunning design, this bike has captured the
hearts of riders worldwide. Let's take a closer look at what makes the TVS RTR 160 a top
choice for bikers.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4">TVS RTR 160 4V: Where Innovation Meets Performance</h2>
<h3 class="h5 mb-4">The TVS RTR 160 4V - A Game Changer</h3>
<p class="lead fs-6">Innovation is the driving force behind the TVS RTR 160 4V. This
motorcycle redefines the standards of performance and technology in the biking industry.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4">TVS RTR 200 4V: Power Redefined</h2>
<h3 class="h5 mb-4">TVS RTR 200 4V - The Ultimate Thrill Machine</h3>
<p class="lead fs-6">For riders seeking unmatched power and adrenaline rushes, the TVS RTR
200 4V is the go-to choice. This beast on two wheels combines raw power with finesse.
Let's dive into the details that make it a favorite.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4"> TVS RTR 160 Price: Affordable Excellence</h2>
<h3 class="h5 mb-4">TVS RTR 160 Price Range - Value for Money</h3>
<p class="lead fs-6">One of the key factors that attract riders to the TVS RTR 160 is its
affordability. Discover how TVS manages to offer excellence without breaking the bank.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4"> TVS RTR 200: Dominating the Streets</h2>
<h3 class="h5 mb-4">Conquering the Roads with TVS RTR 200</h3>
<p class="lead fs-6">The TVS RTR 200 is more than just a motorcycle; it's a statement. Learn
why this bike has earned a reputation for dominating the streets and highways.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4"> TVS RTR 180: A Balance of Power and Precision</h2>
<h3 class="h5 mb-4">TVS RTR 180 - The Art of Balance</h3>
<p class="lead fs-6">In the world of biking, balance is crucial. TVS RTR 180 strikes the
perfect equilibrium between power and precision. Explore how it achieves this delicate
harmony.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4">The TVS Apache RTR Experience: Real Stories</h2>
<h3 class="h5 mb-4">Rider Tales: TVS Apache RTR in Action</h3>
<p class="lead fs-6">To truly understand the TVS Apache RTR experience, we turn to real
riders and their stories. Hear firsthand accounts of the adventures, challenges, and
triumphs with these incredible motorcycles.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4">TVS RTR Series: Performance Unleashed</h2>
<h3 class="h5 mb-4">Unveiling the Performance Prowess</h3>
<p class="lead fs-6">The TVS RTR series is synonymous with exceptional performance. Let's
dissect the advanced technologies and engineering that make these bikes a force to be
reckoned with on the road.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4">TVS RTR vs. the Competition: A Head-to-Head Comparison</h2>
<h3 class="h5 mb-4">TVS RTR - The Undisputed Champion</h3>
<p class="lead fs-6">In the fiercely competitive world of motorcycles, TVS RTR stands tall.
We compare these machines with their rivals to demonstrate why they are the undisputed
champions in their categories.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body text-center">
<h2 class="h3 mb-4">TVS RTR: Style and Substance</h2>
<h3 class="h5 mb-4">The Art of Motorcycle Aesthetics</h3>
<p class="lead fs-6">Style is not just skin deep when it comes to TVS RTR motorcycles. These
bikes are a marriage of aesthetics and substance. Explore the design philosophy that
sets them apart.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body">
<h2 class="h3 mb-4">TVS RTR 160 Review: What the Experts Say</h2>
<h3 class="h5 mb-4">TVS RTR 160: A Critique</h3>
<p class="lead fs-6">Experts in the field have examined the TVS RTR 160 from every angle.
Let's dive into their insights and opinions to get a comprehensive view of this
remarkable motorcycle.</p>
</div>
</div>
</div>
<div class="col-md-4 col-12 my-5">
<div class="card">
<div class="card-body">
<h2 class="h3 mb-4">TVS RTR 160 4V vs. TVS RTR 200 4V: Choosing the Right Ride</h2>
<h3 class="h5 mb-4">TVS RTR 160 4V or TVS RTR 200 4V?</h3>
<p class="lead fs-6">Choosing between the TVS RTR 160 4V and the TVS RTR 200 4V can be a
tough decision. We break down the differences to help you make the right choice for your