1<!doctype html>
2
3<html lang="en-US">
4
5 <head>
6
7 <title>
8Tire Size Calculator | TireSizeHelp.com</title>
9
10 <meta name="description" content="Tire Size Calculator | Get right tires and wheels for your car."/>
11
12 <meta name="author" content="TireSizeHelp.com">
13
14 <meta charset="utf-8">
15
16 <meta name="viewport" content="width=device-width, initial-scale=1">
17
18 <link href="/css/flatly.css" rel="stylesheet">
19
20
21<!-- <link href="https://bootswatch.com/4/spacelab/bootstrap.min.css" rel="stylesheet">
22 -->
23
24 <link href="/css/custom.css" rel="stylesheet">
25
26 <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon.png">
27
28 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
29
30 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
31
32 <link rel="manifest" href="/site.webmanifest">
33
34 <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
35
36 <link rel="canonical" href="https://www.tiresizehelp.com"/>
37
38 <meta name="msapplication-TileColor" content="#da532c">
39
40 <meta name="theme-color" content="#ffffff">
41
42 <meta name="google-site-verification" content="zfhUUC12qOg7iJjE0Xvu7wR4dwBWae9vVT47_SVim4A" />
43
44 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
45
46 <script src="https://code.jquery.com/jquery-3.1.1.min.js">
47</script>
48
49 <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2280065185048291"
50 crossorigin="anonymous">
51</script>
52
53 </head>
54
55 <body>
56
57 <nav class="navbar navbar-expand-md navbar-light fixed-top bg-light">
58
59 <a title="TireSizeHelp" class="navbar-brand" href="/">
60<img alt="TireSizeHelp" src="/images/tiresizepro-logo.png"/>
61</a>
62
63 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
64
65 <span class="navbar-toggler-icon">
66</span>
67
68 </button>
69
70
71 <div class="collapse navbar-collapse" id="navbarsExampleDefault">
72
73 <ul class="navbar-nav mr-auto">
74
75 <li class="nav-item">
76
77 <a class="nav-link" href="/">
78Home</a>
79
80 </li>
81
82 <li class="nav-item">
83
84 <a class="nav-link" href="/">
85Tire Size Calculator</a>
86
87 </li>
88
89 <li class="nav-item">
90
91 <a class="nav-link" href="#">
92Tire Size Chart</a>
93
94 </li>
95
96 <li class="nav-item">
97
98 <a class="nav-link" href="#">
99Tires Size Comparison</a>
100
101 </li>
102
103
104 <li class="nav-item dropdown">
105
106 <a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
107Tires</a>
108
109 <div class="dropdown-menu">
110
111 <a class="dropdown-item" href="#">
112By Vehicle</a>
113
114 <a class="dropdown-item" href="#">
115By Size</a>
116
117 <a class="dropdown-item" href="#">
118By Diameter</a>
119
120 <a class="dropdown-item" href="#">
121By Brand</a>
122
123 <a class="dropdown-item" href="#">
124By Type</a>
125
126 </div>
127
128 </li>
129
130
131 <li class="nav-item dropdown">
132
133 <a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
134Size Tools</a>
135
136 <div class="dropdown-menu" aria-labelledby="dropdown01">
137
138 <a class="dropdown-item" href="#">
139All Tire Sizes</a>
140
141 <a class="dropdown-item" href="#">
142Bolt Patterns</a>
143
144 <a class="dropdown-item" href="#">
145Wheel Offset Calculator</a>
146
147 <a class="dropdown-item" href="#">
148Gear Ration Calculator</a>
149
150 <a class="dropdown-item" href="#">
151Speedometer Calibration</a>
152
153 </div>
154
155 </li>
156
157 </ul>
158
159 <form class="form-inline my-2 my-lg-0">
160
161 <input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
162
163 <button class="btn btn-outline-success my-2 my-sm-0" type="submit">
164Search</button>
165
166 </form>
167
168 </div>
169
170 </nav>
171 <main>
172
173 <script>
174
175 function loadModels(vendor) {
176 // alert(vendor);
177 $( "#year" ).html('<option value="0">
178Select Year</option>
179');
180 $( "#trim" ).html('<option value="0">
181Select Trim</option>
182');
183
184 $.get( "/get_models/" + vendor , function( data, status ) {
185 $( "#model" ).html( data );
186 });
187 }
188
189 function loadYears(model) {
190 $( "#trim" ).html('<option value="0">
191Select Trim</option>
192');
193 $.get( "/get_years/" + $( "#vendor" ).val() + "/" + model , function( data, status ) {
194 $( "#year" ).html( data );
195 });
196 }
197
198 function loadTrims(year) {
199 $.get( "/get_trims/" + $( "#vendor" ).val() + "/" + $( "#model" ).val() + "/" + year , function( data, status ) {
200 $( "#trim" ).html( data );
201 });
202 }
203
204 function showSizes(trim) {
205 window.location.href = "/Tires/" + $( "#year" ).val() + "/" + $( "#vendor" ).val() + "/" + $( "#model" ).val() + "/" + $( "#trim" ).val();
206 }
207 </script>
208
209 <div class="container">
210
211 <div class="page-header">
212
213 <div class="col-sm">
214
215 <br/>
216<br/>
217<br/>
218<br/>
219
220 <br/>
221
222 <nav class="navbar navbar-expand-lg navbar-dark bg-dark">
223
224 <div id="brand_logo">
225
226
227 </div>
228
229 <form class="form-inline my-2 my-lg-0">
230
231 <select style="font-size:14px;" onchange="loadModels(this.value)" id="vendor" class="custom-select btn btn-light my-2 my-sm-0">
232
233 <option value="0">
234Select make</option>
235
236 <option value="Acura">
237Acura</option>
238
239 <option value="Alfa Romeo">
240Alfa Romeo</option>
241
242 <option value="Aston Martin">
243Aston Martin</option>
244
245 <option value="Audi">
246Audi</option>
247
248 <option value="Bentley">
249Bentley</option>
250
251 <option value="BMW">
252BMW</option>
253
254 <option value="Brilliance">
255Brilliance</option>
256
257 <option value="Buick">
258Buick</option>
259
260 <option value="BYD">
261BYD</option>
262
263 <option value="Cadillac">
264Cadillac</option>
265
266 <option value="Changan">
267Changan</option>
268
269 <option value="Chery">
270Chery</option>
271
272 <option value="Chevrolet">
273Chevrolet</option>
274
275 <option value="Chrysler">
276Chrysler</option>
277
278 <option value="Citroen">
279Citroen</option>
280
281 <option value="Dadi">
282Dadi</option>
283
284 <option value="Daewoo">
285Daewoo</option>
286
287 <option value="Daihatsu">
288Daihatsu</option>
289
290 <option value="Datsun">
291Datsun</option>
292
293 <option value="Derways">
294Derways</option>
295
296 <option value="Dodge">
297Dodge</option>
298
299 <option value="Dongfeng">
300Dongfeng</option>
301
302 <option value="Emgrand">
303Emgrand</option>
304
305 <option value="FAW">
306FAW</option>
307
308 <option value="Ferrari">
309Ferrari</option>
310
311 <option value="Fiat">
312Fiat</option>
313
314 <option value="Ford">
315Ford</option>
316
317 <option value="Geely">
318Geely</option>
319
320 <option value="GMC">
321GMC</option>
322
323 <option value="Great Wall">
324Great Wall</option>
325
326 <option value="Haima">
327Haima</option>
328
329 <option value="Honda">
330Honda</option>
331
332 <option value="Hummer">
333Hummer</option>
334
335 <option value="Hyundai">
336Hyundai</option>
337
338 <option value="Infiniti">
339Infiniti</option>
340
341 <option value="Isuzu">
342Isuzu</option>
343
344 <option value="Iveco">
345Iveco</option>
346
347 <option value="JAC">
348JAC</option>
349
350 <option value="Jaguar">
351Jaguar</option>
352
353 <option value="Jeep">
354Jeep</option>
355
356 <option value="Jiangling">
357Jiangling</option>
358
359 <option value="JMC">
360JMC</option>
361
362 <option value="Kia">
363Kia</option>
364
365 <option value="Lamborghini">
366Lamborghini</option>
367
368 <option value="Lancia">
369Lancia</option>
370
371 <option value="Land Rover">
372Land Rover</option>
373
374 <option value="Landwind">
375Landwind</option>
376
377 <option value="Lexus">
378Lexus</option>
379
380 <option value="Lifan">
381Lifan</option>
382
383 <option value="Lincoln">
384Lincoln</option>
385
386 <option value="Lotus">
387Lotus</option>
388
389 <option value="Maserati">
390Maserati</option>
391
392 <option value="Maybach">
393Maybach</option>
394
395 <option value="Mazda">
396Mazda</option>
397
398 <option value="Mercedes">
399Mercedes</option>
400
401 <option value="Mercury">
402Mercury</option>
403
404 <option value="MG">
405MG</option>
406
407 <option value="Mini">
408Mini</option>
409
410 <option value="Mitsubishi">
411Mitsubishi</option>
412
413 <option value="Mosler">
414Mosler</option>
415
416 <option value="Nissan">
417Nissan</option>
418
419 <option value="Oldsmobile">
420Oldsmobile</option>
421
422 <option value="Opel">
423Opel</option>
424
425 <option value="Panoz">
426Panoz</option>
427
428 <option value="Peugeot">
429Peugeot</option>
430
431 <option value="Plymouth">
432Plymouth</option>
433
434 <option value="Pontiac">
435Pontiac</option>
436
437 <option value="Porsche">
438Porsche</option>
439
440 <option value="Ram">
441Ram</option>
442
443 <option value="Ravon">
444Ravon</option>
445
446 <option value="Renault">
447Renault</option>
448
449 <option value="Rolls Royce">
450Rolls Royce</option>
451
452 <option value="Rover">
453Rover</option>
454
455 <option value="Saab">
456Saab</option>
457
458 <option value="Saleen">
459Saleen</option>
460
461 <option value="Saturn">
462Saturn</option>
463
464 <option value="Scion">
465Scion</option>
466
467 <option value="Seat">
468Seat</option>
469
470 <option value="Skoda">
471Skoda</option>
472
473 <option value="Smart">
474Smart</option>
475
476 <option value="Ssang Yong">
477Ssang Yong</option>
478
479 <option value="Subaru">
480Subaru</option>
481
482 <option value="Suzuki">
483Suzuki</option>
484
485 <option value="Toyota">
486Toyota</option>
487
488 <option value="Volkswagen">
489Volkswagen</option>
490
491 <option value="Volvo">
492Volvo</option>
493
494 <option value="Xin Kai">
495Xin Kai</option>
496
497 <option value="ZAZ">
498ZAZ</option>
499
500 <option value="ZX">
501ZX</option>
502
503 <option value="ВАЗ">
504ВАЗ</option>
505
506 <option value="ГАЗ">
507ГАЗ</option>
508
509 <option value="ТагАЗ">
510ТагАЗ</option>
511
512 <option value="УАЗ">
513УАЗ</option>
514
515 </select>
516
517
518 <select style="font-size:14px;" onchange="loadYears(this.value)" id="model" class="custom-select btn btn-light my-2 my-sm-0">
519
520 <option value="0">
521Select model</option>
522
523 </select>
524
525
526 <select style="font-size:14px;" onchange="loadTrims(this.value)" id="year" class="custom-select btn btn-light my-2 my-sm-0">
527
528 <option value="0">
529Select year</option>
530
531 </select>
532
533
534 <select style="font-size:14px;" onchange="showSizes(this.value)" id="trim" class="custom-select btn btn-light my-2 my-sm-0">
535
536 <option value="0">
537Select trim</option>
538
539 </select>
540
541 </form>
542
543 </nav>
544
545 <br/>
546
547 </div>
548
549
550 </div>
551
552 </div>
553 <div class="container">
554
555 <div class="col-sm">
556
557 <h1 style="font-size:20px;">
558Tire Size Calculator</h1>
559
560 <p align="justify">
561
562 Welcome to the TireSizePro web-portal. Here our users can find a wide varierty of useful info on different tires and wheels,
563 including detailed parameters such as size, specifcations, max speed and many more. We gathered these parameters
564 for almost 3000 vehicle models! Is easy to access all this information by using a selector menu.
565 </p>
566
567 </div>
568
569 </div>
570
571 <div class="container">
572
573 <div class="col-sm">
574
575 <br/>
576
577 <table class='center'>
578<tr>
579 <td>
580
581 <div class="dalw">
582
583 <h3>
584<a data-toggle="tooltip" href="/Acura/tires" title="Acura">
585
586 <img width="15" height="15" alt="Acura" src="/images/cars/acura.png"/>
587 Acura</a>
588</h3>
589
590 </div>
591
592 </td>
593
594 <td>
595
596 <div class="dalw">
597
598 <h3>
599<a data-toggle="tooltip" href="/Alfa%20Romeo/tires" title="Alfa Romeo">
600
601 <img width="15" height="15" alt="Alfa Romeo" src="/images/cars/alfa%20romeo.png"/>
602 Alfa Romeo</a>
603</h3>
604
605 </div>
606
607 </td>
608
609 <td>
610
611 <div class="dalw">
612
613 <h3>
614<a data-toggle="tooltip" href="/Aston%20Martin/tires" title="Aston Martin">
615
616 <img width="15" height="15" alt="Aston Martin" src="/images/cars/aston%20martin.png"/>
617 Aston Martin</a>
618</h3>
619
620 </div>
621
622 </td>
623
624 <td>
625
626 <div class="dalw">
627
628 <h3>
629<a data-toggle="tooltip" href="/Audi/tires" title="Audi">
630
631 <img width="15" height="15" alt="Audi" src="/images/cars/audi.png"/>
632 Audi</a>
633</h3>
634
635 </div>
636
637 </td>
638
639 </tr>
640<tr>
641 <td>
642
643 <div class="dalw">
644
645 <h3>
646<a data-toggle="tooltip" href="/Bentley/tires" title="Bentley">
647
648 <img width="15" height="15" alt="Bentley" src="/images/cars/bentley.png"/>
649 Bentley</a>
650</h3>
651
652 </div>
653
654 </td>
655
656 <td>
657
658 <div class="dalw">
659
660 <h3>
661<a data-toggle="tooltip" href="/BMW/tires" title="BMW">
662
663 <img width="15" height="15" alt="BMW" src="/images/cars/bmw.png"/>
664 BMW</a>
665</h3>
666
667 </div>
668
669 </td>
670
671 <td>
672
673 <div class="dalw">
674
675 <h3>
676<a data-toggle="tooltip" href="/Buick/tires" title="Buick">
677
678 <img width="15" height="15" alt="Buick" src="/images/cars/buick.png"/>
679 Buick</a>
680</h3>
681
682 </div>
683
684 </td>
685
686 <td>
687
688 <div class="dalw">
689
690 <h3>
691<a data-toggle="tooltip" href="/Cadillac/tires" title="Cadillac">
692
693 <img width="15" height="15" alt="Cadillac" src="/images/cars/cadillac.png"/>
694 Cadillac</a>
695</h3>
696
697 </div>
698
699 </td>
700
701 </tr>
702<tr>
703 <td>
704
705 <div class="dalw">
706
707 <h3>
708<a data-toggle="tooltip" href="/Chevrolet/tires" title="Chevrolet">
709
710 <img width="15" height="15" alt="Chevrolet" src="/images/cars/chevrolet.png"/>
711 Chevrolet</a>
712</h3>
713
714 </div>
715
716 </td>
717
718 <td>
719
720 <div class="dalw">
721
722 <h3>
723<a data-toggle="tooltip" href="/Chrysler/tires" title="Chrysler">
724
725 <img width="15" height="15" alt="Chrysler" src="/images/cars/chrysler.png"/>
726 Chrysler</a>
727</h3>
728
729 </div>
730
731 </td>
732
733 <td>
734
735 <div class="dalw">
736
737 <h3>
738<a data-toggle="tooltip" href="/Citroen/tires" title="Citroen">
739
740 <img width="15" height="15" alt="Citroen" src="/images/cars/citroen.png"/>
741 Citroen</a>
742</h3>
743
744 </div>
745
746 </td>
747
748 <td>
749
750 <div class="dalw">
751
752 <h3>
753<a data-toggle="tooltip" href="/Daihatsu/tires" title="Daihatsu">
754
755 <img width="15" height="15" alt="Daihatsu" src="/images/cars/daihatsu.png"/>
756 Daihatsu</a>
757</h3>
758
759 </div>
760
761 </td>
762
763 </tr>
764<tr>
765 <td>
766
767 <div class="dalw">
768
769 <h3>
770<a data-toggle="tooltip" href="/Dodge/tires" title="Dodge">
771
772 <img width="15" height="15" alt="Dodge" src="/images/cars/dodge.png"/>
773 Dodge</a>
774</h3>
775
776 </div>
777
778 </td>
779
780 <td>
781
782 <div class="dalw">
783
784 <h3>
785<a data-toggle="tooltip" href="/Ferrari/tires" title="Ferrari">
786
787 <img width="15" height="15" alt="Ferrari" src="/images/cars/ferrari.png"/>
788 Ferrari</a>
789</h3>
790
791 </div>
792
793 </td>
794
795 <td>
796
797 <div class="dalw">
798
799 <h3>
800<a data-toggle="tooltip" href="/Fiat/tires" title="Fiat">
801
802 <img width="15" height="15" alt="Fiat" src="/images/cars/fiat.png"/>
803 Fiat</a>
804</h3>
805
806 </div>
807
808 </td>
809
810 <td>
811
812 <div class="dalw">
813
814 <h3>
815<a data-toggle="tooltip" href="/Ford/tires" title="Ford">
816
817 <img width="15" height="15" alt="Ford" src="/images/cars/ford.png"/>
818 Ford</a>
819</h3>
820
821 </div>
822
823 </td>
824
825 </tr>
826<tr>
827 <td>
828
829 <div class="dalw">
830
831 <h3>
832<a data-toggle="tooltip" href="/GMC/tires" title="GMC">
833
834 <img width="15" height="15" alt="GMC" src="/images/cars/gmc.png"/>
835 GMC</a>
836</h3>
837
838 </div>
839
840 </td>
841
842 <td>
843
844 <div class="dalw">
845
846 <h3>
847<a data-toggle="tooltip" href="/Honda/tires" title="Honda">
848
849 <img width="15" height="15" alt="Honda" src="/images/cars/honda.png"/>
850 Honda</a>
851</h3>
852
853 </div>
854
855 </td>
856
857 <td>
858
859 <div class="dalw">
860
861 <h3>
862<a data-toggle="tooltip" href="/Hummer/tires" title="Hummer">
863
864 <img width="15" height="15" alt="Hummer" src="/images/cars/hummer.png"/>
865 Hummer</a>
866</h3>
867
868 </div>
869
870 </td>
871
872 <td>
873
874 <div class="dalw">
875
876 <h3>
877<a data-toggle="tooltip" href="/Hyundai/tires" title="Hyundai">
878
879 <img width="15" height="15" alt="Hyundai" src="/images/cars/hyundai.png"/>
880 Hyundai</a>
881</h3>
882
883 </div>
884
885 </td>
886
887 </tr>
888<tr>
889 <td>
890
891 <div class="dalw">
892
893 <h3>
894<a data-toggle="tooltip" href="/Infiniti/tires" title="Infiniti">
895
896 <img width="15" height="15" alt="Infiniti" src="/images/cars/infiniti.png"/>
897 Infiniti</a>
898</h3>
899
900 </div>
901
902 </td>
903
904 <td>
905
906 <div class="dalw">
907
908 <h3>
909<a data-toggle="tooltip" href="/Isuzu/tires" title="Isuzu">
910
911 <img width="15" height="15" alt="Isuzu" src="/images/cars/isuzu.png"/>
912 Isuzu</a>
913</h3>
914
915 </div>
916
917 </td>
918
919 <td>
920
921 <div class="dalw">
922
923 <h3>
924<a data-toggle="tooltip" href="/Iveco/tires" title="Iveco">
925
926 <img width="15" height="15" alt="Iveco" src="/images/cars/iveco.png"/>
927 Iveco</a>
928</h3>
929
930 </div>
931
932 </td>
933
934 <td>
935
936 <div class="dalw">
937
938 <h3>
939<a data-toggle="tooltip" href="/Jaguar/tires" title="Jaguar">
940
941 <img width="15" height="15" alt="Jaguar" src="/images/cars/jaguar.png"/>
942 Jaguar</a>
943</h3>
944
945 </div>
946
947 </td>
948
949 </tr>
950<tr>
951 <td>
952
953 <div class="dalw">
954
955 <h3>
956<a data-toggle="tooltip" href="/Jeep/tires" title="Jeep">
957
958 <img width="15" height="15" alt="Jeep" src="/images/cars/jeep.png"/>
959 Jeep</a>
960</h3>
961
962 </div>
963
964 </td>
965
966 <td>
967
968 <div class="dalw">
969
970 <h3>
971<a data-toggle="tooltip" href="/Kia/tires" title="Kia">
972
973 <img width="15" height="15" alt="Kia" src="/images/cars/kia.png"/>
974 Kia</a>
975</h3>
976
977 </div>
978
979 </td>
980
981 <td>
982
983 <div class="dalw">
984
985 <h3>
986<a data-toggle="tooltip" href="/Lamborghini/tires" title="Lamborghini">
987
988 <img width="15" height="15" alt="Lamborghini" src="/images/cars/lamborghini.png"/>
989 Lamborghini</a>
990</h3>
991
992 </div>
993
994 </td>
995
996 <td>
997
998 <div class="dalw">
999
1000 <h3>
1001<a data-toggle="tooltip" href="/Lancia/tires" title="Lancia">
1002
1003 <img width="15" height="15" alt="Lancia" src="/images/cars/lancia.png"/>
1004 Lancia</a>
1005</h3>
1006
1007 </div>
1008
1009 </td>
1010
1011 </tr>
1012<tr>
1013 <td>
1014
1015 <div class="dalw">
1016
1017 <h3>
1018<a data-toggle="tooltip" href="/Land%20Rover/tires" title="Land Rover">
1019
1020 <img width="15" height="15" alt="Land Rover" src="/images/cars/land%20rover.png"/>
1021 Land Rover</a>
1022</h3>
1023
1024 </div>
1025
1026 </td>
1027
1028 <td>
1029
1030 <div class="dalw">
1031
1032 <h3>
1033<a data-toggle="tooltip" href="/Lexus/tires" title="Lexus">
1034
1035 <img width="15" height="15" alt="Lexus" src="/images/cars/lexus.png"/>
1036 Lexus</a>
1037</h3>
1038
1039 </div>
1040
1041 </td>
1042
1043 <td>
1044
1045 <div class="dalw">
1046
1047 <h3>
1048<a data-toggle="tooltip" href="/Lincoln/tires" title="Lincoln">
1049
1050 <img width="15" height="15" alt="Lincoln" src="/images/cars/lincoln.png"/>
1051 Lincoln</a>
1052</h3>
1053
1054 </div>
1055
1056 </td>
1057
1058 <td>
1059
1060 <div class="dalw">
1061
1062 <h3>
1063<a data-toggle="tooltip" href="/Lotus/tires" title="Lotus">
1064
1065 <img width="15" height="15" alt="Lotus" src="/images/cars/lotus.png"/>
1066 Lotus</a>
1067</h3>
1068
1069 </div>
1070
1071 </td>
1072
1073 </tr>
1074<tr>
1075 <td>
1076
1077 <div class="dalw">
1078
1079 <h3>
1080<a data-toggle="tooltip" href="/Maserati/tires" title="Maserati">
1081
1082 <img width="15" height="15" alt="Maserati" src="/images/cars/maserati.png"/>
1083 Maserati</a>
1084</h3>
1085
1086 </div>
1087
1088 </td>
1089
1090 <td>
1091
1092 <div class="dalw">
1093
1094 <h3>
1095<a data-toggle="tooltip" href="/Mazda/tires" title="Mazda">
1096
1097 <img width="15" height="15" alt="Mazda" src="/images/cars/mazda.png"/>
1098 Mazda</a>
1099</h3>
1100
1101 </div>
1102
1103 </td>
1104
1105 <td>
1106
1107 <div class="dalw">
1108
1109 <h3>
1110<a data-toggle="tooltip" href="/Mercedes/tires" title="Mercedes">
1111
1112 <img width="15" height="15" alt="Mercedes" src="/images/cars/mercedes.png"/>
1113 Mercedes</a>
1114</h3>
1115
1116 </div>
1117
1118 </td>
1119
1120 <td>
1121
1122 <div class="dalw">
1123
1124 <h3>
1125<a data-toggle="tooltip" href="/Mercury/tires" title="Mercury">
1126
1127 <img width="15" height="15" alt="Mercury" src="/images/cars/mercury.png"/>
1128 Mercury</a>
1129</h3>
1130
1131 </div>
1132
1133 </td>
1134
1135 </tr>
1136<tr>
1137 <td>
1138
1139 <div class="dalw">
1140
1141 <h3>
1142<a data-toggle="tooltip" href="/MG/tires" title="MG">
1143
1144 <img width="15" height="15" alt="MG" src="/images/cars/mg.png"/>
1145 MG</a>
1146</h3>
1147
1148 </div>
1149
1150 </td>
1151
1152 <td>
1153
1154 <div class="dalw">
1155
1156 <h3>
1157<a data-toggle="tooltip" href="/Mini/tires" title="Mini">
1158
1159 <img width="15" height="15" alt="Mini" src="/images/cars/mini.png"/>
1160 Mini</a>
1161</h3>
1162
1163 </div>
1164
1165 </td>
1166
1167 <td>
1168
1169 <div class="dalw">
1170
1171 <h3>
1172<a data-toggle="tooltip" href="/Mitsubishi/tires" title="Mitsubishi">
1173
1174 <img width="15" height="15" alt="Mitsubishi" src="/images/cars/mitsubishi.png"/>
1175 Mitsubishi</a>
1176</h3>
1177
1178 </div>
1179
1180 </td>
1181
1182 <td>
1183
1184 <div class="dalw">
1185
1186 <h3>
1187<a data-toggle="tooltip" href="/Nissan/tires" title="Nissan">
1188
1189 <img width="15" height="15" alt="Nissan" src="/images/cars/nissan.png"/>
1190 Nissan</a>
1191</h3>
1192
1193 </div>
1194
1195 </td>
1196
1197 </tr>
1198<tr>
1199 <td>
1200
1201 <div class="dalw">
1202
1203 <h3>
1204<a data-toggle="tooltip" href="/Opel/tires" title="Opel">
1205
1206 <img width="15" height="15" alt="Opel" src="/images/cars/opel.png"/>
1207 Opel</a>
1208</h3>
1209
1210 </div>
1211
1212 </td>
1213
1214 <td>
1215
1216 <div class="dalw">
1217
1218 <h3>
1219<a data-toggle="tooltip" href="/Peugeot/tires" title="Peugeot">
1220
1221 <img width="15" height="15" alt="Peugeot" src="/images/cars/peugeot.png"/>
1222 Peugeot</a>
1223</h3>
1224
1225 </div>
1226
1227 </td>
1228
1229 <td>
1230
1231 <div class="dalw">
1232
1233 <h3>
1234<a data-toggle="tooltip" href="/Plymouth/tires" title="Plymouth">
1235
1236 <img width="15" height="15" alt="Plymouth" src="/images/cars/plymouth.png"/>
1237 Plymouth</a>
1238</h3>
1239
1240 </div>
1241
1242 </td>
1243
1244 <td>
1245
1246 <div class="dalw">
1247
1248 <h3>
1249<a data-toggle="tooltip" href="/Pontiac/tires" title="Pontiac">
1250
1251 <img width="15" height="15" alt="Pontiac" src="/images/cars/pontiac.png"/>
1252 Pontiac</a>
1253</h3>
1254
1255 </div>
1256
1257 </td>
1258
1259 </tr>
1260<tr>
1261 <td>
1262
1263 <div class="dalw">
1264
1265 <h3>
1266<a data-toggle="tooltip" href="/Porsche/tires" title="Porsche">
1267
1268 <img width="15" height="15" alt="Porsche" src="/images/cars/porsche.png"/>
1269 Porsche</a>
1270</h3>
1271
1272 </div>
1273
1274 </td>
1275
1276 <td>
1277
1278 <div class="dalw">
1279
1280 <h3>
1281<a data-toggle="tooltip" href="/Ram/tires" title="Ram">
1282
1283 <img width="15" height="15" alt="Ram" src="/images/cars/ram.png"/>
1284 Ram</a>
1285</h3>
1286
1287 </div>
1288
1289 </td>
1290
1291 <td>
1292
1293 <div class="dalw">
1294
1295 <h3>
1296<a data-toggle="tooltip" href="/Renault/tires" title="Renault">
1297
1298 <img width="15" height="15" alt="Renault" src="/images/cars/renault.png"/>
1299 Renault</a>
1300</h3>
1301
1302 </div>
1303
1304 </td>
1305
1306 <td>
1307
1308 <div class="dalw">
1309
1310 <h3>
1311<a data-toggle="tooltip" href="/Rolls%20Royce/tires" title="Rolls Royce">
1312
1313 <img width="15" height="15" alt="Rolls Royce" src="/images/cars/rolls%20royce.png"/>
1314 Rolls Royce</a>
1315</h3>
1316
1317 </div>
1318
1319 </td>
1320
1321 </tr>
1322<tr>
1323 <td>
1324
1325 <div class="dalw">
1326
1327 <h3>
1328<a data-toggle="tooltip" href="/Rover/tires" title="Rover">
1329
1330 <img width="15" height="15" alt="Rover" src="/images/cars/rover.png"/>
1331 Rover</a>
1332</h3>
1333
1334 </div>
1335
1336 </td>
1337
1338 <td>
1339
1340 <div class="dalw">
1341
1342 <h3>
1343<a data-toggle="tooltip" href="/Saab/tires" title="Saab">
1344
1345 <img width="15" height="15" alt="Saab" src="/images/cars/saab.png"/>
1346 Saab</a>
1347</h3>
1348
1349 </div>
1350
1351 </td>
1352
1353 <td>
1354
1355 <div class="dalw">
1356
1357 <h3>
1358<a data-toggle="tooltip" href="/Saturn/tires" title="Saturn">
1359
1360 <img width="15" height="15" alt="Saturn" src="/images/cars/saturn.png"/>
1361 Saturn</a>
1362</h3>
1363
1364 </div>
1365
1366 </td>
1367
1368 <td>
1369
1370 <div class="dalw">
1371
1372 <h3>
1373<a data-toggle="tooltip" href="/Scion/tires" title="Scion">
1374
1375 <img width="15" height="15" alt="Scion" src="/images/cars/scion.png"/>
1376 Scion</a>
1377</h3>
1378
1379 </div>
1380
1381 </td>
1382
1383 </tr>
1384<tr>
1385 <td>
1386
1387 <div class="dalw">
1388
1389 <h3>
1390<a data-toggle="tooltip" href="/Seat/tires" title="Seat">
1391
1392 <img width="15" height="15" alt="Seat" src="/images/cars/seat.png"/>
1393 Seat</a>
1394</h3>
1395
1396 </div>
1397
1398 </td>
1399
1400 <td>
1401
1402 <div class="dalw">
1403
1404 <h3>
1405<a data-toggle="tooltip" href="/Skoda/tires" title="Skoda">
1406
1407 <img width="15" height="15" alt="Skoda" src="/images/cars/skoda.png"/>
1408 Skoda</a>
1409</h3>
1410
1411 </div>
1412
1413 </td>
1414
1415 <td>
1416
1417 <div class="dalw">
1418
1419 <h3>
1420<a data-toggle="tooltip" href="/Smart/tires" title="Smart">
1421
1422 <img width="15" height="15" alt="Smart" src="/images/cars/smart.png"/>
1423 Smart</a>
1424</h3>
1425
1426 </div>
1427
1428 </td>
1429
1430 <td>
1431
1432 <div class="dalw">
1433
1434 <h3>
1435<a data-toggle="tooltip" href="/Subaru/tires" title="Subaru">
1436
1437 <img width="15" height="15" alt="Subaru" src="/images/cars/subaru.png"/>
1438 Subaru</a>
1439</h3>
1440
1441 </div>
1442
1443 </td>
1444
1445 </tr>
1446<tr>
1447 <td>
1448
1449 <div class="dalw">
1450
1451 <h3>
1452<a data-toggle="tooltip" href="/Suzuki/tires" title="Suzuki">
1453
1454 <img width="15" height="15" alt="Suzuki" src="/images/cars/suzuki.png"/>
1455 Suzuki</a>
1456</h3>
1457
1458 </div>
1459
1460 </td>
1461
1462 <td>
1463
1464 <div class="dalw">
1465
1466 <h3>
1467<a data-toggle="tooltip" href="/Toyota/tires" title="Toyota">
1468
1469 <img width="15" height="15" alt="Toyota" src="/images/cars/toyota.png"/>
1470 Toyota</a>
1471</h3>
1472
1473 </div>
1474
1475 </td>
1476
1477 <td>
1478
1479 <div class="dalw">
1480
1481 <h3>
1482<a data-toggle="tooltip" href="/Volkswagen/tires" title="Volkswagen">
1483
1484 <img width="15" height="15" alt="Volkswagen" src="/images/cars/volkswagen.png"/>
1485 Volkswagen</a>
1486</h3>
1487
1488 </div>
1489
1490 </td>
1491
1492 <td>
1493
1494 <div class="dalw">
1495
1496 <h3>
1497<a data-toggle="tooltip" href="/Volvo/tires" title="Volvo">
1498
1499 <img width="15" height="15" alt="Volvo" src="/images/cars/volvo.png"/>
1500 Volvo</a>
1501</h3>
1502
1503 </div>
1504
1505 </td>
1506
1507 </tr>
1508</table>
1509
1510 </div>
1511
1512 <br/>
1513<br/>
1514
1515 </div>
1516
1517 <div class="container">
1518
1519 <div class="col-sm">
1520
1521 <h3 style="font-size:20px;">
1522TireSizeHelp.com</h3>
1523
1524 <p align="justify">
1525
1526 The quality and proper selection of tires and wheels plays a big role for the driver's and car safety. When choosing tires and wheels, you should be guided solely by the manufacturer’s technical recommendations.
1527 <br>
1528<br>
1529To choose the right tires, you need to know correct parameters, since an overly wide rubber can cause the brake system to malfunction, and a narrow one to increase the load on the bearing. To avoid the above problems, we recommend wheels and tires should be selected by car model. This will install the necessary details.
1530 <br>
1531<br>
1532Faced with the need to choose new tires, we recommend using our specialized service, which can not only helpa to select tires, but also explains the features of their operation. It is important to know that the correct choice of tires depends on the axis of the car, the operating conditions, the quality of the roads, the nature of traffic and the seasons.
1533 See also <a href="https://www.vinrush.com/completely-free-vin-check">
1534completely free vin check</a>
1535 service in order to get more information.
1536
1537 </p>
1538
1539 </div>
1540
1541
1542 <br/>
1543<br/>
1544
1545
1546 </div>
1547
1548 <div class="container">
1549
1550 <div class="col-sm">
1551
1552 <br/>
1553
1554 <table class='center'>
1555<tr>
1556 <td>
1557
1558 <div class="dac">
1559
1560 <h2>
1561
1562 <a data-toggle="tooltip" href="#" title="BFGoodrich">
1563
1564 BFGoodrich<br/>
1565<img alt="bfgoodrich" src="/images/logos/gs/bfgoodrich.png"/>
1566
1567 </a>
1568</h2>
1569
1570 </div>
1571
1572 </td>
1573
1574 <td>
1575
1576 <div class="dac">
1577
1578 <h2>
1579
1580 <a data-toggle="tooltip" href="#" title="Goodyear">
1581
1582 Goodyear<br/>
1583<img alt="goodyear" src="/images/logos/gs/goodyear.png"/>
1584
1585 </a>
1586</h2>
1587
1588 </div>
1589
1590 </td>
1591
1592 <td>
1593
1594 <div class="dac">
1595
1596 <h2>
1597
1598 <a data-toggle="tooltip" href="#" title="Nitto">
1599
1600 Nitto<br/>
1601<img alt="nitto" src="/images/logos/gs/nitto.png"/>
1602
1603 </a>
1604</h2>
1605
1606 </div>
1607
1608 </td>
1609
1610 <td>
1611
1612 <div class="dac">
1613
1614 <h2>
1615
1616 <a data-toggle="tooltip" href="#" title="Cooper">
1617
1618 Cooper<br/>
1619<img alt="cooper" src="/images/logos/gs/cooper.png"/>
1620
1621 </a>
1622</h2>
1623
1624 </div>
1625
1626 </td>
1627
1628 </tr>
1629<tr>
1630 <td>
1631
1632 <div class="dac">
1633
1634 <h2>
1635
1636 <a data-toggle="tooltip" href="#" title="Toyo">
1637
1638 Toyo<br/>
1639<img alt="toyo" src="/images/logos/gs/toyo.png"/>
1640
1641 </a>
1642</h2>
1643
1644 </div>
1645
1646 </td>
1647
1648 <td>
1649
1650 <div class="dac">
1651
1652 <h2>
1653
1654 <a data-toggle="tooltip" href="#" title="Yokohama">
1655
1656 Yokohama<br/>
1657<img alt="yokohama" src="/images/logos/gs/yokohama.png"/>
1658
1659 </a>
1660</h2>
1661
1662 </div>
1663
1664 </td>
1665
1666 <td>
1667
1668 <div class="dac">
1669
1670 <h2>
1671
1672 <a data-toggle="tooltip" href="#" title="Kumho">
1673
1674 Kumho<br/>
1675<img alt="kumho" src="/images/logos/gs/kumho.png"/>
1676
1677 </a>
1678</h2>
1679
1680 </div>
1681
1682 </td>
1683
1684 <td>
1685
1686 <div class="dac">
1687
1688 <h2>
1689
1690 <a data-toggle="tooltip" href="#" title="Michelin">
1691
1692 Michelin<br/>
1693<img alt="michelin" src="/images/logos/gs/michelin.png"/>
1694
1695 </a>
1696</h2>
1697
1698 </div>
1699
1700 </td>
1701
1702 </tr>
1703<tr>
1704 <td>
1705
1706 <div class="dac">
1707
1708 <h2>
1709
1710 <a data-toggle="tooltip" href="#" title="Bridgestone">
1711
1712 Bridgestone<br/>
1713<img alt="bridgestone" src="/images/logos/gs/bridgestone.png"/>
1714
1715 </a>
1716</h2>
1717
1718 </div>
1719
1720 </td>
1721
1722 <td>
1723
1724 <div class="dac">
1725
1726 <h2>
1727
1728 <a data-toggle="tooltip" href="#" title="Hankook">
1729
1730 Hankook<br/>
1731<img alt="hankook" src="/images/logos/gs/hankook.png"/>
1732
1733 </a>
1734</h2>
1735
1736 </div>
1737
1738 </td>
1739
1740 <td>
1741
1742 <div class="dac">
1743
1744 <h2>
1745
1746 <a data-toggle="tooltip" href="#" title="Maxxis">
1747
1748 Maxxis<br/>
1749<img alt="maxxis" src="/images/logos/gs/maxxis.png"/>
1750
1751 </a>
1752</h2>
1753
1754 </div>
1755
1756 </td>
1757
1758 <td>
1759
1760 <div class="dac">
1761
1762 <h2>
1763
1764 <a data-toggle="tooltip" href="#" title="Pro Comp">
1765
1766 Pro Comp<br/>
1767<img alt="pro comp" src="/images/logos/gs/pro%20comp.png"/>
1768
1769 </a>
1770</h2>
1771
1772 </div>
1773
1774 </td>
1775
1776 </tr>
1777<tr>
1778 <td>
1779
1780 <div class="dac">
1781
1782 <h2>
1783
1784 <a data-toggle="tooltip" href="#" title="General">
1785
1786 General<br/>
1787<img alt="general" src="/images/logos/gs/general.png"/>
1788
1789 </a>
1790</h2>
1791
1792 </div>
1793
1794 </td>
1795
1796 <td>
1797
1798 <div class="dac">
1799
1800 <h2>
1801
1802 <a data-toggle="tooltip" href="#" title="Mickey Thompson">
1803
1804 Mickey Thompson<br/>
1805<img alt="mickey thompson" src="/images/logos/gs/mickey%20thompson.png"/>
1806
1807 </a>
1808</h2>
1809
1810 </div>
1811
1812 </td>
1813
1814 <td>
1815
1816 <div class="dac">
1817
1818 <h2>
1819
1820 <a data-toggle="tooltip" href="#" title="Dick Cepek">
1821
1822 Dick Cepek<br/>
1823<img alt="dick cepek" src="/images/logos/gs/dick%20cepek.png"/>
1824
1825 </a>
1826</h2>
1827
1828 </div>
1829
1830 </td>
1831
1832 <td>
1833
1834 <div class="dac">
1835
1836 <h2>
1837
1838 <a data-toggle="tooltip" href="#" title="Firestone">
1839
1840 Firestone<br/>
1841<img alt="firestone" src="/images/logos/gs/firestone.png"/>
1842
1843 </a>
1844</h2>
1845
1846 </div>
1847
1848 </td>
1849
1850 </tr>
1851<tr>
1852 <td>
1853
1854 <div class="dac">
1855
1856 <h2>
1857
1858 <a data-toggle="tooltip" href="#" title="Federal">
1859
1860 Federal<br/>
1861<img alt="federal" src="/images/logos/gs/federal.png"/>
1862
1863 </a>
1864</h2>
1865
1866 </div>
1867
1868 </td>
1869
1870 <td>
1871
1872 <div class="dac">
1873
1874 <h2>
1875
1876 <a data-toggle="tooltip" href="#" title="Falken">
1877
1878 Falken<br/>
1879<img alt="falken" src="/images/logos/gs/falken.png"/>
1880
1881 </a>
1882</h2>
1883
1884 </div>
1885
1886 </td>
1887
1888 <td>
1889
1890 <div class="dac">
1891
1892 <h2>
1893
1894 <a data-toggle="tooltip" href="#" title="Pirelli">
1895
1896 Pirelli<br/>
1897<img alt="pirelli" src="/images/logos/gs/pirelli.png"/>
1898
1899 </a>
1900</h2>
1901
1902 </div>
1903
1904 </td>
1905
1906 <td>
1907
1908 <div class="dac">
1909
1910 <h2>
1911
1912 <a data-toggle="tooltip" href="#" title="Mastercraft">
1913
1914 Mastercraft<br/>
1915<img alt="mastercraft" src="/images/logos/gs/mastercraft.png"/>
1916
1917 </a>
1918</h2>
1919
1920 </div>
1921
1922 </td>
1923
1924 </tr>
1925<tr>
1926 <td>
1927
1928 <div class="dac">
1929
1930 <h2>
1931
1932 <a data-toggle="tooltip" href="#" title="Atturo">
1933
1934 Atturo<br/>
1935<img alt="atturo" src="/images/logos/gs/atturo.png"/>
1936
1937 </a>
1938</h2>
1939
1940 </div>
1941
1942 </td>
1943
1944 <td>
1945
1946 <div class="dac">
1947
1948 <h2>
1949
1950 <a data-toggle="tooltip" href="#" title="Dunlop">
1951
1952 Dunlop<br/>
1953<img alt="dunlop" src="/images/logos/gs/dunlop.png"/>
1954
1955 </a>
1956</h2>
1957
1958 </div>
1959
1960 </td>
1961
1962 <td>
1963
1964 <div class="dac">
1965
1966 <h2>
1967
1968 <a data-toggle="tooltip" href="#" title="Continental">
1969
1970 Continental<br/>
1971<img alt="continental" src="/images/logos/gs/continental.png"/>
1972
1973 </a>
1974</h2>
1975
1976 </div>
1977
1978 </td>
1979
1980 <td>
1981
1982 <div class="dac">
1983
1984 <h2>
1985
1986 <a data-toggle="tooltip" href="#" title="Fierce">
1987
1988 Fierce<br/>
1989<img alt="fierce" src="/images/logos/gs/fierce.png"/>
1990
1991 </a>
1992</h2>
1993
1994 </div>
1995
1996 </td>
1997
1998 </tr>
1999<tr>
2000 <td>
2001
2002 <div class="dac">
2003
2004 <h2>
2005
2006 <a data-toggle="tooltip" href="#" title="Hercules">
2007
2008 Hercules<br/>
2009<img alt="hercules" src="/images/logos/gs/hercules.png"/>
2010
2011 </a>
2012</h2>
2013
2014 </div>
2015
2016 </td>
2017
2018 <td>
2019
2020 <div class="dac">
2021
2022 <h2>
2023
2024 <a data-toggle="tooltip" href="#" title="Sumitomo">
2025
2026 Sumitomo<br/>
2027<img alt="sumitomo" src="/images/logos/gs/sumitomo.png"/>
2028
2029 </a>
2030</h2>
2031
2032 </div>
2033
2034 </td>
2035
2036 <td>
2037
2038 <div class="dac">
2039
2040 <h2>
2041
2042 <a data-toggle="tooltip" href="#" title="Nexen">
2043
2044 Nexen<br/>
2045<img alt="nexen" src="/images/logos/gs/nexen.png"/>
2046
2047 </a>
2048</h2>
2049
2050 </div>
2051
2052 </td>
2053
2054 <td>
2055
2056 <div class="dac">
2057
2058 <h2>
2059
2060 <a data-toggle="tooltip" href="#" title="Uniroyal">
2061
2062 Uniroyal<br/>
2063<img alt="uniroyal" src="/images/logos/gs/uniroyal.png"/>
2064
2065 </a>
2066</h2>
2067
2068 </div>
2069
2070 </td>
2071
2072 </tr>
2073<tr>
2074 <td>
2075
2076 <div class="dac">
2077
2078 <h2>
2079
2080 <a data-toggle="tooltip" href="#" title="Fuzion">
2081
2082 Fuzion<br/>
2083<img alt="fuzion" src="/images/logos/gs/fuzion.png"/>
2084
2085 </a>
2086</h2>
2087
2088 </div>
2089
2090 </td>
2091
2092 <td>
2093
2094 <div class="dac">
2095
2096 <h2>
2097
2098 <a data-toggle="tooltip" href="#" title="Hoosier">
2099
2100 Hoosier<br/>
2101<img alt="hoosier" src="/images/logos/gs/hoosier.png"/>
2102
2103 </a>
2104</h2>
2105
2106 </div>
2107
2108 </td>
2109
2110 <td>
2111
2112 <div class="dac">
2113
2114 <h2>
2115
2116 <a data-toggle="tooltip" href="#" title="Fuel">
2117
2118 Fuel<br/>
2119<img alt="fuel" src="/images/logos/gs/fuel.png"/>
2120
2121 </a>
2122</h2>
2123
2124 </div>
2125
2126 </td>
2127
2128 <td>
2129 </td>
2130</tr>
2131</table>
2132
2133
2134 <br/>
2135
2136 </div>
2137
2138 </div>
2139
2140 </main>
2141
2142 <hr/>
2143
2144 <footer class="container">
2145
2146 <p>
2147TireSizeHelp© 2020</p>
2148
2149 <small>
2150
2151 All names, logos, trademarks and registered trademarks are property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names, trademarks and brands does not imply endorsement.
2152 </small>
2153
2154 </footer>
2155
2156<br/>
2157
2158 <script src="https://getbootstrap.com/docs/4.1/assets/js/vendor/holder.min.js">
2159</script>
2160
2161 <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js">
2162</script>
2163
2164 <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js">
2165</script>
2166
2167 <script src="https://getbootstrap.com/docs/4.1/examples/offcanvas/offcanvas.js">
2168</script>
2169
2170
2171<!-- Global site tag (gtag.js) - Google Analytics -->
2172
2173<script async src="https://www.googletagmanager.com/gtag/js?id=UA-4640919-18">
2174</script>
2175
2176<script>
2177
2178 window.dataLayer = window.dataLayer || [];
2179 function gtag(){dataLayer.push(arguments);}
2180 gtag('js', new Date());
2181
2182 gtag('config', 'UA-4640919-18');
2183</script>
2184
2185 <script type="application/ld+json">
2186
2187{
2188 "@context": "https://schema.org",
2189 "@type": "Organization",
2190 "url": "https://www.tiresizehelp.com",
2191 "name": "TireSizeHelp",
2192 "contactPoint": {
2193 "@type": "ContactPoint",
2194 "telephone": "+1-800-309-4154",
2195 "contactType": "Customer service"
2196 }
2197}
2198</script>
2199
2200 </body>
2201
2202</html>
2203
2204