1
<!doctype html>
2
3
<html lang="en">
4
5
6
<head>
7
8
<title>
9
10
Audi Tires and Wheels Size Calculator | TireSizeHelp.com</title>
11
12
<meta name="description" content="Audi Tires and Wheels Size Calculator and Specs" />
13
14
<meta name="author" content="TireSizePro.com" />
15
16
<meta charset="utf-8">
17
18
<meta name="viewport" content="width=device-width, initial-scale=1">
19
20
<link href="/css/flatly.css" rel="stylesheet">
21
22
<link rel="canonical" href="https://www.tiresizehelp.com/Audi/tires" />
23
24
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon.png">
25
26
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
27
28
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
29
30
<link rel="manifest" href="/site.webmanifest">
31
32
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
33
34
<meta name="msapplication-TileColor" content="#da532c">
35
36
<meta name="theme-color" content="#ffffff">
37
38
<meta name="google-site-verification" content="zfhUUC12qOg7iJjE0Xvu7wR4dwBWae9vVT47_SVim4A" />
39
40
<script src="https://code.jquery.com/jquery-3.1.1.min.js">
41
</script>
42
43
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
44
45
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2280065185048291"
46
crossorigin="anonymous">
47
</script>
48
49
</head>
50
51
52
<body>
53
54
<nav class="navbar navbar-expand-md navbar-light fixed-top bg-light">
55
56
<a title="TireSizeHelp" class="navbar-brand" href="/">
57
<img alt="TireSizeHelp" src="/images/tiresizepro-logo.png"/>
58
</a>
59
60
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
61
62
<span class="navbar-toggler-icon">
63
</span>
64
65
</button>
66
67
68
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
69
70
<ul class="navbar-nav mr-auto">
71
72
<li class="nav-item">
73
74
<a class="nav-link" href="/">
75
Home</a>
76
77
</li>
78
79
<li class="nav-item">
80
81
<a class="nav-link" href="/">
82
Tire Size Calculator</a>
83
84
</li>
85
86
<li class="nav-item">
87
88
<a class="nav-link" href="#">
89
Tire Size Chart</a>
90
91
</li>
92
93
<li class="nav-item">
94
95
<a class="nav-link" href="#">
96
Tires Size Comparison</a>
97
98
</li>
99
100
101
<li class="nav-item dropdown">
102
103
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
104
Tires</a>
105
106
<div class="dropdown-menu">
107
108
<a class="dropdown-item" href="#">
109
By Vehicle</a>
110
111
<a class="dropdown-item" href="#">
112
By Size</a>
113
114
<a class="dropdown-item" href="#">
115
By Diameter</a>
116
117
<a class="dropdown-item" href="#">
118
By Brand</a>
119
120
<a class="dropdown-item" href="#">
121
By Type</a>
122
123
</div>
124
125
</li>
126
127
128
<li class="nav-item dropdown">
129
130
<a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
131
Size Tools</a>
132
133
<div class="dropdown-menu" aria-labelledby="dropdown01">
134
135
<a class="dropdown-item" href="#">
136
All Tire Sizes</a>
137
138
<a class="dropdown-item" href="#">
139
Bolt Patterns</a>
140
141
<a class="dropdown-item" href="#">
142
Wheel Offset Calculator</a>
143
144
<a class="dropdown-item" href="#">
145
Gear Ration Calculator</a>
146
147
<a class="dropdown-item" href="#">
148
Speedometer Calibration</a>
149
150
</div>
151
152
</li>
153
154
</ul>
155
156
<form class="form-inline my-2 my-lg-0">
157
158
<input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
159
160
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">
161
Search</button>
162
163
</form>
164
165
</div>
166
167
</nav>
168
<main>
169
170
<script>
171
172
function loadModels(vendor) {
173
// alert(vendor);
174
$( "#year" ).html('<option value="0">
175
Select Year</option>
176
');
177
$( "#trim" ).html('<option value="0">
178
Select Trim</option>
179
');
180
181
$.get( "/get_models/" + vendor , function( data, status ) {
182
$( "#model" ).html( data );
183
});
184
}
185
186
function loadYears(model) {
187
$( "#trim" ).html('<option value="0">
188
Select Trim</option>
189
');
190
$.get( "/get_years/" + $( "#vendor" ).val() + "/" + model , function( data, status ) {
191
$( "#year" ).html( data );
192
});
193
}
194
195
function loadTrims(year) {
196
$.get( "/get_trims/" + $( "#vendor" ).val() + "/" + $( "#model" ).val() + "/" + year , function( data, status ) {
197
$( "#trim" ).html( data );
198
});
199
}
200
201
function showSizes(trim) {
202
window.location.href = "/Tires/" + $( "#year" ).val() + "/" + $( "#vendor" ).val() + "/" + $( "#model" ).val() + "/" + $( "#trim" ).val();
203
}
204
</script>
205
206
<div class="container">
207
208
<div class="page-header">
209
210
<div class="col-sm">
211
212
<br/>
213
<br/>
214
<br/>
215
<br/>
216
217
<br/>
218
219
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
220
221
<div id="brand_logo">
222
223
224
</div>
225
226
<form class="form-inline my-2 my-lg-0">
227
228
<select style="font-size:14px;" onchange="loadModels(this.value)" id="vendor" class="custom-select btn btn-light my-2 my-sm-0">
229
230
<option value="0">
231
Select make</option>
232
233
<option value="Acura">
234
Acura</option>
235
236
<option value="Alfa Romeo">
237
Alfa Romeo</option>
238
239
<option value="Aston Martin">
240
Aston Martin</option>
241
242
<option value="Audi">
243
Audi</option>
244
245
<option value="Bentley">
246
Bentley</option>
247
248
<option value="BMW">
249
BMW</option>
250
251
<option value="Brilliance">
252
Brilliance</option>
253
254
<option value="Buick">
255
Buick</option>
256
257
<option value="BYD">
258
BYD</option>
259
260
<option value="Cadillac">
261
Cadillac</option>
262
263
<option value="Changan">
264
Changan</option>
265
266
<option value="Chery">
267
Chery</option>
268
269
<option value="Chevrolet">
270
Chevrolet</option>
271
272
<option value="Chrysler">
273
Chrysler</option>
274
275
<option value="Citroen">
276
Citroen</option>
277
278
<option value="Dadi">
279
Dadi</option>
280
281
<option value="Daewoo">
282
Daewoo</option>
283
284
<option value="Daihatsu">
285
Daihatsu</option>
286
287
<option value="Datsun">
288
Datsun</option>
289
290
<option value="Derways">
291
Derways</option>
292
293
<option value="Dodge">
294
Dodge</option>
295
296
<option value="Dongfeng">
297
Dongfeng</option>
298
299
<option value="Emgrand">
300
Emgrand</option>
301
302
<option value="FAW">
303
FAW</option>
304
305
<option value="Ferrari">
306
Ferrari</option>
307
308
<option value="Fiat">
309
Fiat</option>
310
311
<option value="Ford">
312
Ford</option>
313
314
<option value="Geely">
315
Geely</option>
316
317
<option value="GMC">
318
GMC</option>
319
320
<option value="Great Wall">
321
Great Wall</option>
322
323
<option value="Haima">
324
Haima</option>
325
326
<option value="Honda">
327
Honda</option>
328
329
<option value="Hummer">
330
Hummer</option>
331
332
<option value="Hyundai">
333
Hyundai</option>
334
335
<option value="Infiniti">
336
Infiniti</option>
337
338
<option value="Isuzu">
339
Isuzu</option>
340
341
<option value="Iveco">
342
Iveco</option>
343
344
<option value="JAC">
345
JAC</option>
346
347
<option value="Jaguar">
348
Jaguar</option>
349
350
<option value="Jeep">
351
Jeep</option>
352
353
<option value="Jiangling">
354
Jiangling</option>
355
356
<option value="JMC">
357
JMC</option>
358
359
<option value="Kia">
360
Kia</option>
361
362
<option value="Lamborghini">
363
Lamborghini</option>
364
365
<option value="Lancia">
366
Lancia</option>
367
368
<option value="Land Rover">
369
Land Rover</option>
370
371
<option value="Landwind">
372
Landwind</option>
373
374
<option value="Lexus">
375
Lexus</option>
376
377
<option value="Lifan">
378
Lifan</option>
379
380
<option value="Lincoln">
381
Lincoln</option>
382
383
<option value="Lotus">
384
Lotus</option>
385
386
<option value="Maserati">
387
Maserati</option>
388
389
<option value="Maybach">
390
Maybach</option>
391
392
<option value="Mazda">
393
Mazda</option>
394
395
<option value="Mercedes">
396
Mercedes</option>
397
398
<option value="Mercury">
399
Mercury</option>
400
401
<option value="MG">
402
MG</option>
403
404
<option value="Mini">
405
Mini</option>
406
407
<option value="Mitsubishi">
408
Mitsubishi</option>
409
410
<option value="Mosler">
411
Mosler</option>
412
413
<option value="Nissan">
414
Nissan</option>
415
416
<option value="Oldsmobile">
417
Oldsmobile</option>
418
419
<option value="Opel">
420
Opel</option>
421
422
<option value="Panoz">
423
Panoz</option>
424
425
<option value="Peugeot">
426
Peugeot</option>
427
428
<option value="Plymouth">
429
Plymouth</option>
430
431
<option value="Pontiac">
432
Pontiac</option>
433
434
<option value="Porsche">
435
Porsche</option>
436
437
<option value="Ram">
438
Ram</option>
439
440
<option value="Ravon">
441
Ravon</option>
442
443
<option value="Renault">
444
Renault</option>
445
446
<option value="Rolls Royce">
447
Rolls Royce</option>
448
449
<option value="Rover">
450
Rover</option>
451
452
<option value="Saab">
453
Saab</option>
454
455
<option value="Saleen">
456
Saleen</option>
457
458
<option value="Saturn">
459
Saturn</option>
460
461
<option value="Scion">
462
Scion</option>
463
464
<option value="Seat">
465
Seat</option>
466
467
<option value="Skoda">
468
Skoda</option>
469
470
<option value="Smart">
471
Smart</option>
472
473
<option value="Ssang Yong">
474
Ssang Yong</option>
475
476
<option value="Subaru">
477
Subaru</option>
478
479
<option value="Suzuki">
480
Suzuki</option>
481
482
<option value="Toyota">
483
Toyota</option>
484
485
<option value="Volkswagen">
486
Volkswagen</option>
487
488
<option value="Volvo">
489
Volvo</option>
490
491
<option value="Xin Kai">
492
Xin Kai</option>
493
494
<option value="ZAZ">
495
ZAZ</option>
496
497
<option value="ZX">
498
ZX</option>
499
500
<option value="ВАЗ">
501
ВАЗ</option>
502
503
<option value="ГАЗ">
504
ГАЗ</option>
505
506
<option value="ТагАЗ">
507
ТагАЗ</option>
508
509
<option value="УАЗ">
510
УАЗ</option>
511
512
</select>
513
514
515
<select style="font-size:14px;" onchange="loadYears(this.value)" id="model" class="custom-select btn btn-light my-2 my-sm-0">
516
517
<option value="0">
518
Select model</option>
519
520
</select>
521
522
523
<select style="font-size:14px;" onchange="loadTrims(this.value)" id="year" class="custom-select btn btn-light my-2 my-sm-0">
524
525
<option value="0">
526
Select year</option>
527
528
</select>
529
530
531
<select style="font-size:14px;" onchange="showSizes(this.value)" id="trim" class="custom-select btn btn-light my-2 my-sm-0">
532
533
<option value="0">
534
Select trim</option>
535
536
</select>
537
538
</form>
539
540
</nav>
541
542
<br/>
543
544
</div>
545
546
547
</div>
548
549
</div>
550
<div class="container">
551
552
<div class="row">
553
554
<div class="col-sm">
555
556
<h1 style="font-size:18px;">
557
558
Audi Tires and Wheels Size Calculator</h1>
559
560
<p align="justify">
561
562
Here our users can find a wide varierty of useful info on different tires and wheels for
563
Audi cars, including detailed parameters such as size, specifcations, max speed and many more. We gathered these parameters for almost 3000 vehicle models! Is easy to access all this information by using a selector menu.
564
</p>
565
566
</div>
567
568
</div>
569
570
</div>
571
572
<div class="container">
573
574
<div class="col-sm">
575
576
<div>
577
578
<nav aria-label="breadcrumb">
579
580
<ol class="breadcrumb">
581
582
<li class="breadcrumb-item">
583
<a href="/">
584
Home</a>
585
</li>
586
587
<li class="breadcrumb-item active" aria-current="page">
588
589
Audi </li>
590
591
</ol>
592
593
</nav>
594
595
</div>
596
597
<div class="row">
598
599
<p>
600
601
<table align='center' border='0'>
602
<tr>
603
<td align="center">
604
605
<div align="left" style="width:200px;">
606
607
<span style="font-size:14px;">
608
<a data-toggle="tooltip" href="/Audi/A1 (8X1, 8XF)/tires" title="A1 (8X1, 8XF)">
609
610
<h3 style="font-size:14px;">
611
A1 (8X1, 8XF)</h3>
612
</a>
613
</span>
614
615
</div>
616
617
</td>
618
619
<td align="center">
620
621
<div align="left" style="width:200px;">
622
623
<span style="font-size:14px;">
624
<a data-toggle="tooltip" href="/Audi/A1 Sportback (8XA, 8XK)/tires" title="A1 Sportback (8XA, 8XK)">
625
626
<h3 style="font-size:14px;">
627
A1 Sportback (8XA, 8XK)</h3>
628
</a>
629
</span>
630
631
</div>
632
633
</td>
634
635
<td align="center">
636
637
<div align="left" style="width:200px;">
638
639
<span style="font-size:14px;">
640
<a data-toggle="tooltip" href="/Audi/A2 (8Z0)/tires" title="A2 (8Z0)">
641
642
<h3 style="font-size:14px;">
643
A2 (8Z0)</h3>
644
</a>
645
</span>
646
647
</div>
648
649
</td>
650
651
<td align="center">
652
653
<div align="left" style="width:200px;">
654
655
<span style="font-size:14px;">
656
<a data-toggle="tooltip" href="/Audi/A3 (8L1)/tires" title="A3 (8L1)">
657
658
<h3 style="font-size:14px;">
659
A3 (8L1)</h3>
660
</a>
661
</span>
662
663
</div>
664
665
</td>
666
667
</tr>
668
<tr>
669
<td align="center">
670
671
<div align="left" style="width:200px;">
672
673
<span style="font-size:14px;">
674
<a data-toggle="tooltip" href="/Audi/A3 (8P1)/tires" title="A3 (8P1)">
675
676
<h3 style="font-size:14px;">
677
A3 (8P1)</h3>
678
</a>
679
</span>
680
681
</div>
682
683
</td>
684
685
<td align="center">
686
687
<div align="left" style="width:200px;">
688
689
<span style="font-size:14px;">
690
<a data-toggle="tooltip" href="/Audi/A3 (8V1)/tires" title="A3 (8V1)">
691
692
<h3 style="font-size:14px;">
693
A3 (8V1)</h3>
694
</a>
695
</span>
696
697
</div>
698
699
</td>
700
701
<td align="center">
702
703
<div align="left" style="width:200px;">
704
705
<span style="font-size:14px;">
706
<a data-toggle="tooltip" href="/Audi/A3 Cabrio (8P7)/tires" title="A3 Cabrio (8P7)">
707
708
<h3 style="font-size:14px;">
709
A3 Cabrio (8P7)</h3>
710
</a>
711
</span>
712
713
</div>
714
715
</td>
716
717
<td align="center">
718
719
<div align="left" style="width:200px;">
720
721
<span style="font-size:14px;">
722
<a data-toggle="tooltip" href="/Audi/A3 Cabrio (8V7)/tires" title="A3 Cabrio (8V7)">
723
724
<h3 style="font-size:14px;">
725
A3 Cabrio (8V7)</h3>
726
</a>
727
</span>
728
729
</div>
730
731
</td>
732
733
</tr>
734
<tr>
735
<td align="center">
736
737
<div align="left" style="width:200px;">
738
739
<span style="font-size:14px;">
740
<a data-toggle="tooltip" href="/Audi/A3 Limousine (8VS)/tires" title="A3 Limousine (8VS)">
741
742
<h3 style="font-size:14px;">
743
A3 Limousine (8VS)</h3>
744
</a>
745
</span>
746
747
</div>
748
749
</td>
750
751
<td align="center">
752
753
<div align="left" style="width:200px;">
754
755
<span style="font-size:14px;">
756
<a data-toggle="tooltip" href="/Audi/A3 Sportback (8PA)/tires" title="A3 Sportback (8PA)">
757
758
<h3 style="font-size:14px;">
759
A3 Sportback (8PA)</h3>
760
</a>
761
</span>
762
763
</div>
764
765
</td>
766
767
<td align="center">
768
769
<div align="left" style="width:200px;">
770
771
<span style="font-size:14px;">
772
<a data-toggle="tooltip" href="/Audi/A3 Sportback (8VA)/tires" title="A3 Sportback (8VA)">
773
774
<h3 style="font-size:14px;">
775
A3 Sportback (8VA)</h3>
776
</a>
777
</span>
778
779
</div>
780
781
</td>
782
783
<td align="center">
784
785
<div align="left" style="width:200px;">
786
787
<span style="font-size:14px;">
788
<a data-toggle="tooltip" href="/Audi/A4 (8D2, B5)/tires" title="A4 (8D2, B5)">
789
790
<h3 style="font-size:14px;">
791
A4 (8D2, B5)</h3>
792
</a>
793
</span>
794
795
</div>
796
797
</td>
798
799
</tr>
800
<tr>
801
<td align="center">
802
803
<div align="left" style="width:200px;">
804
805
<span style="font-size:14px;">
806
<a data-toggle="tooltip" href="/Audi/A4 (8E2, B6)/tires" title="A4 (8E2, B6)">
807
808
<h3 style="font-size:14px;">
809
A4 (8E2, B6)</h3>
810
</a>
811
</span>
812
813
</div>
814
815
</td>
816
817
<td align="center">
818
819
<div align="left" style="width:200px;">
820
821
<span style="font-size:14px;">
822
<a data-toggle="tooltip" href="/Audi/A4 (8EC, B7)/tires" title="A4 (8EC, B7)">
823
824
<h3 style="font-size:14px;">
825
A4 (8EC, B7)</h3>
826
</a>
827
</span>
828
829
</div>
830
831
</td>
832
833
<td align="center">
834
835
<div align="left" style="width:200px;">
836
837
<span style="font-size:14px;">
838
<a data-toggle="tooltip" href="/Audi/A4 (8K2, B8)/tires" title="A4 (8K2, B8)">
839
840
<h3 style="font-size:14px;">
841
A4 (8K2, B8)</h3>
842
</a>
843
</span>
844
845
</div>
846
847
</td>
848
849
<td align="center">
850
851
<div align="left" style="width:200px;">
852
853
<span style="font-size:14px;">
854
<a data-toggle="tooltip" href="/Audi/A4 (8W2, B9)/tires" title="A4 (8W2, B9)">
855
856
<h3 style="font-size:14px;">
857
A4 (8W2, B9)</h3>
858
</a>
859
</span>
860
861
</div>
862
863
</td>
864
865
</tr>
866
<tr>
867
<td align="center">
868
869
<div align="left" style="width:200px;">
870
871
<span style="font-size:14px;">
872
<a data-toggle="tooltip" href="/Audi/A4 Allroad (8KH, B8)/tires" title="A4 Allroad (8KH, B8)">
873
874
<h3 style="font-size:14px;">
875
A4 Allroad (8KH, B8)</h3>
876
</a>
877
</span>
878
879
</div>
880
881
</td>
882
883
<td align="center">
884
885
<div align="left" style="width:200px;">
886
887
<span style="font-size:14px;">
888
<a data-toggle="tooltip" href="/Audi/A4 Allroad (8WH, B9)/tires" title="A4 Allroad (8WH, B9)">
889
890
<h3 style="font-size:14px;">
891
A4 Allroad (8WH, B9)</h3>
892
</a>
893
</span>
894
895
</div>
896
897
</td>
898
899
<td align="center">
900
901
<div align="left" style="width:200px;">
902
903
<span style="font-size:14px;">
904
<a data-toggle="tooltip" href="/Audi/A4 Avant (8D5, B5)/tires" title="A4 Avant (8D5, B5)">
905
906
<h3 style="font-size:14px;">
907
A4 Avant (8D5, B5)</h3>
908
</a>
909
</span>
910
911
</div>
912
913
</td>
914
915
<td align="center">
916
917
<div align="left" style="width:200px;">
918
919
<span style="font-size:14px;">
920
<a data-toggle="tooltip" href="/Audi/A4 Avant (8E5, B6)/tires" title="A4 Avant (8E5, B6)">
921
922
<h3 style="font-size:14px;">
923
A4 Avant (8E5, B6)</h3>
924
</a>
925
</span>
926
927
</div>
928
929
</td>
930
931
</tr>
932
<tr>
933
<td align="center">
934
935
<div align="left" style="width:200px;">
936
937
<span style="font-size:14px;">
938
<a data-toggle="tooltip" href="/Audi/A4 Avant (8ED, B7)/tires" title="A4 Avant (8ED, B7)">
939
940
<h3 style="font-size:14px;">
941
A4 Avant (8ED, B7)</h3>
942
</a>
943
</span>
944
945
</div>
946
947
</td>
948
949
<td align="center">
950
951
<div align="left" style="width:200px;">
952
953
<span style="font-size:14px;">
954
<a data-toggle="tooltip" href="/Audi/A4 Avant (8K5, B8)/tires" title="A4 Avant (8K5, B8)">
955
956
<h3 style="font-size:14px;">
957
A4 Avant (8K5, B8)</h3>
958
</a>
959
</span>
960
961
</div>
962
963
</td>
964
965
<td align="center">
966
967
<div align="left" style="width:200px;">
968
969
<span style="font-size:14px;">
970
<a data-toggle="tooltip" href="/Audi/A4 Avant (8W5, B9)/tires" title="A4 Avant (8W5, B9)">
971
972
<h3 style="font-size:14px;">
973
A4 Avant (8W5, B9)</h3>
974
</a>
975
</span>
976
977
</div>
978
979
</td>
980
981
<td align="center">
982
983
<div align="left" style="width:200px;">
984
985
<span style="font-size:14px;">
986
<a data-toggle="tooltip" href="/Audi/A4 Cabrio (8H7, B6, 8HE, B7)/tires" title="A4 Cabrio (8H7, B6, 8HE, B7)">
987
988
<h3 style="font-size:14px;">
989
A4 Cabrio (8H7, B6, 8HE, B7)</h3>
990
</a>
991
</span>
992
993
</div>
994
995
</td>
996
997
</tr>
998
<tr>
999
<td align="center">
1000
1001
<div align="left" style="width:200px;">
1002
1003
<span style="font-size:14px;">
1004
<a data-toggle="tooltip" href="/Audi/A5 (8T3)/tires" title="A5 (8T3)">
1005
1006
<h3 style="font-size:14px;">
1007
A5 (8T3)</h3>
1008
</a>
1009
</span>
1010
1011
</div>
1012
1013
</td>
1014
1015
<td align="center">
1016
1017
<div align="left" style="width:200px;">
1018
1019
<span style="font-size:14px;">
1020
<a data-toggle="tooltip" href="/Audi/A5 Cabrio (8F7)/tires" title="A5 Cabrio (8F7)">
1021
1022
<h3 style="font-size:14px;">
1023
A5 Cabrio (8F7)</h3>
1024
</a>
1025
</span>
1026
1027
</div>
1028
1029
</td>
1030
1031
<td align="center">
1032
1033
<div align="left" style="width:200px;">
1034
1035
<span style="font-size:14px;">
1036
<a data-toggle="tooltip" href="/Audi/A5 Sportback (8TA)/tires" title="A5 Sportback (8TA)">
1037
1038
<h3 style="font-size:14px;">
1039
A5 Sportback (8TA)</h3>
1040
</a>
1041
</span>
1042
1043
</div>
1044
1045
</td>
1046
1047
<td align="center">
1048
1049
<div align="left" style="width:200px;">
1050
1051
<span style="font-size:14px;">
1052
<a data-toggle="tooltip" href="/Audi/A6 (4A, C4)/tires" title="A6 (4A, C4)">
1053
1054
<h3 style="font-size:14px;">
1055
A6 (4A, C4)</h3>
1056
</a>
1057
</span>
1058
1059
</div>
1060
1061
</td>
1062
1063
</tr>
1064
<tr>
1065
<td align="center">
1066
1067
<div align="left" style="width:200px;">
1068
1069
<span style="font-size:14px;">
1070
<a data-toggle="tooltip" href="/Audi/A6 (4B2, C5)/tires" title="A6 (4B2, C5)">
1071
1072
<h3 style="font-size:14px;">
1073
A6 (4B2, C5)</h3>
1074
</a>
1075
</span>
1076
1077
</div>
1078
1079
</td>
1080
1081
<td align="center">
1082
1083
<div align="left" style="width:200px;">
1084
1085
<span style="font-size:14px;">
1086
<a data-toggle="tooltip" href="/Audi/A6 (4F2, C6)/tires" title="A6 (4F2, C6)">
1087
1088
<h3 style="font-size:14px;">
1089
A6 (4F2, C6)</h3>
1090
</a>
1091
</span>
1092
1093
</div>
1094
1095
</td>
1096
1097
<td align="center">
1098
1099
<div align="left" style="width:200px;">
1100
1101
<span style="font-size:14px;">
1102
<a data-toggle="tooltip" href="/Audi/A6 (4G2, C7, 4GC)/tires" title="A6 (4G2, C7, 4GC)">
1103
1104
<h3 style="font-size:14px;">
1105
A6 (4G2, C7, 4GC)</h3>
1106
</a>
1107
</span>
1108
1109
</div>
1110
1111
</td>
1112
1113
<td align="center">
1114
1115
<div align="left" style="width:200px;">
1116
1117
<span style="font-size:14px;">
1118
<a data-toggle="tooltip" href="/Audi/A6 Allroad (4BH, C5)/tires" title="A6 Allroad (4BH, C5)">
1119
1120
<h3 style="font-size:14px;">
1121
A6 Allroad (4BH, C5)</h3>
1122
</a>
1123
</span>
1124
1125
</div>
1126
1127
</td>
1128
1129
</tr>
1130
<tr>
1131
<td align="center">
1132
1133
<div align="left" style="width:200px;">
1134
1135
<span style="font-size:14px;">
1136
<a data-toggle="tooltip" href="/Audi/A6 Allroad (4FH, C6)/tires" title="A6 Allroad (4FH, C6)">
1137
1138
<h3 style="font-size:14px;">
1139
A6 Allroad (4FH, C6)</h3>
1140
</a>
1141
</span>
1142
1143
</div>
1144
1145
</td>
1146
1147
<td align="center">
1148
1149
<div align="left" style="width:200px;">
1150
1151
<span style="font-size:14px;">
1152
<a data-toggle="tooltip" href="/Audi/A6 Allroad (4GH, C7, 4GJ)/tires" title="A6 Allroad (4GH, C7, 4GJ)">
1153
1154
<h3 style="font-size:14px;">
1155
A6 Allroad (4GH, C7, 4GJ)</h3>
1156
</a>
1157
</span>
1158
1159
</div>
1160
1161
</td>
1162
1163
<td align="center">
1164
1165
<div align="left" style="width:200px;">
1166
1167
<span style="font-size:14px;">
1168
<a data-toggle="tooltip" href="/Audi/A6 Avant (4A, C4)/tires" title="A6 Avant (4A, C4)">
1169
1170
<h3 style="font-size:14px;">
1171
A6 Avant (4A, C4)</h3>
1172
</a>
1173
</span>
1174
1175
</div>
1176
1177
</td>
1178
1179
<td align="center">
1180
1181
<div align="left" style="width:200px;">
1182
1183
<span style="font-size:14px;">
1184
<a data-toggle="tooltip" href="/Audi/A6 Avant (4B5, C5)/tires" title="A6 Avant (4B5, C5)">
1185
1186
<h3 style="font-size:14px;">
1187
A6 Avant (4B5, C5)</h3>
1188
</a>
1189
</span>
1190
1191
</div>
1192
1193
</td>
1194
1195
</tr>
1196
<tr>
1197
<td align="center">
1198
1199
<div align="left" style="width:200px;">
1200
1201
<span style="font-size:14px;">
1202
<a data-toggle="tooltip" href="/Audi/A6 Avant (4F5, C6)/tires" title="A6 Avant (4F5, C6)">
1203
1204
<h3 style="font-size:14px;">
1205
A6 Avant (4F5, C6)</h3>
1206
</a>
1207
</span>
1208
1209
</div>
1210
1211
</td>
1212
1213
<td align="center">
1214
1215
<div align="left" style="width:200px;">
1216
1217
<span style="font-size:14px;">
1218
<a data-toggle="tooltip" href="/Audi/A6 Avant (4G5, C7, 4GD)/tires" title="A6 Avant (4G5, C7, 4GD)">
1219
1220
<h3 style="font-size:14px;">
1221
A6 Avant (4G5, C7, 4GD)</h3>
1222
</a>
1223
</span>
1224
1225
</div>
1226
1227
</td>
1228
1229
<td align="center">
1230
1231
<div align="left" style="width:200px;">
1232
1233
<span style="font-size:14px;">
1234
<a data-toggle="tooltip" href="/Audi/A7 Sportback (4GA, 4GF)/tires" title="A7 Sportback (4GA, 4GF)">
1235
1236
<h3 style="font-size:14px;">
1237
A7 Sportback (4GA, 4GF)</h3>
1238
</a>
1239
</span>
1240
1241
</div>
1242
1243
</td>
1244
1245
<td align="center">
1246
1247
<div align="left" style="width:200px;">
1248
1249
<span style="font-size:14px;">
1250
<a data-toggle="tooltip" href="/Audi/A8 (4D2, 4D8)/tires" title="A8 (4D2, 4D8)">
1251
1252
<h3 style="font-size:14px;">
1253
A8 (4D2, 4D8)</h3>
1254
</a>
1255
</span>
1256
1257
</div>
1258
1259
</td>
1260
1261
</tr>
1262
<tr>
1263
<td align="center">
1264
1265
<div align="left" style="width:200px;">
1266
1267
<span style="font-size:14px;">
1268
<a data-toggle="tooltip" href="/Audi/A8 (4E)/tires" title="A8 (4E)">
1269
1270
<h3 style="font-size:14px;">
1271
A8 (4E)</h3>
1272
</a>
1273
</span>
1274
1275
</div>
1276
1277
</td>
1278
1279
<td align="center">
1280
1281
<div align="left" style="width:200px;">
1282
1283
<span style="font-size:14px;">
1284
<a data-toggle="tooltip" href="/Audi/A8 (4H)/tires" title="A8 (4H)">
1285
1286
<h3 style="font-size:14px;">
1287
A8 (4H)</h3>
1288
</a>
1289
</span>
1290
1291
</div>
1292
1293
</td>
1294
1295
<td align="center">
1296
1297
<div align="left" style="width:200px;">
1298
1299
<span style="font-size:14px;">
1300
<a data-toggle="tooltip" href="/Audi/Q2/tires" title="Q2">
1301
1302
<h3 style="font-size:14px;">
1303
Q2</h3>
1304
</a>
1305
</span>
1306
1307
</div>
1308
1309
</td>
1310
1311
<td align="center">
1312
1313
<div align="left" style="width:200px;">
1314
1315
<span style="font-size:14px;">
1316
<a data-toggle="tooltip" href="/Audi/Q3 (8U)/tires" title="Q3 (8U)">
1317
1318
<h3 style="font-size:14px;">
1319
Q3 (8U)</h3>
1320
</a>
1321
</span>
1322
1323
</div>
1324
1325
</td>
1326
1327
</tr>
1328
<tr>
1329
<td align="center">
1330
1331
<div align="left" style="width:200px;">
1332
1333
<span style="font-size:14px;">
1334
<a data-toggle="tooltip" href="/Audi/Q5 (8R)/tires" title="Q5 (8R)">
1335
1336
<h3 style="font-size:14px;">
1337
Q5 (8R)</h3>
1338
</a>
1339
</span>
1340
1341
</div>
1342
1343
</td>
1344
1345
<td align="center">
1346
1347
<div align="left" style="width:200px;">
1348
1349
<span style="font-size:14px;">
1350
<a data-toggle="tooltip" href="/Audi/Q7 (4L)/tires" title="Q7 (4L)">
1351
1352
<h3 style="font-size:14px;">
1353
Q7 (4L)</h3>
1354
</a>
1355
</span>
1356
1357
</div>
1358
1359
</td>
1360
1361
<td align="center">
1362
1363
<div align="left" style="width:200px;">
1364
1365
<span style="font-size:14px;">
1366
<a data-toggle="tooltip" href="/Audi/Q7 (4M)/tires" title="Q7 (4M)">
1367
1368
<h3 style="font-size:14px;">
1369
Q7 (4M)</h3>
1370
</a>
1371
</span>
1372
1373
</div>
1374
1375
</td>
1376
1377
<td align="center">
1378
1379
<div align="left" style="width:200px;">
1380
1381
<span style="font-size:14px;">
1382
<a data-toggle="tooltip" href="/Audi/R8/tires" title="R8">
1383
1384
<h3 style="font-size:14px;">
1385
R8</h3>
1386
</a>
1387
</span>
1388
1389
</div>
1390
1391
</td>
1392
1393
</tr>
1394
<tr>
1395
<td align="center">
1396
1397
<div align="left" style="width:200px;">
1398
1399
<span style="font-size:14px;">
1400
<a data-toggle="tooltip" href="/Audi/R8 II/tires" title="R8 II">
1401
1402
<h3 style="font-size:14px;">
1403
R8 II</h3>
1404
</a>
1405
</span>
1406
1407
</div>
1408
1409
</td>
1410
1411
<td align="center">
1412
1413
<div align="left" style="width:200px;">
1414
1415
<span style="font-size:14px;">
1416
<a data-toggle="tooltip" href="/Audi/R8 Spyder/tires" title="R8 Spyder">
1417
1418
<h3 style="font-size:14px;">
1419
R8 Spyder</h3>
1420
</a>
1421
</span>
1422
1423
</div>
1424
1425
</td>
1426
1427
<td align="center">
1428
1429
<div align="left" style="width:200px;">
1430
1431
<span style="font-size:14px;">
1432
<a data-toggle="tooltip" href="/Audi/TT (8J3)/tires" title="TT (8J3)">
1433
1434
<h3 style="font-size:14px;">
1435
TT (8J3)</h3>
1436
</a>
1437
</span>
1438
1439
</div>
1440
1441
</td>
1442
1443
<td align="center">
1444
1445
<div align="left" style="width:200px;">
1446
1447
<span style="font-size:14px;">
1448
<a data-toggle="tooltip" href="/Audi/TT (8N3)/tires" title="TT (8N3)">
1449
1450
<h3 style="font-size:14px;">
1451
TT (8N3)</h3>
1452
</a>
1453
</span>
1454
1455
</div>
1456
1457
</td>
1458
1459
</tr>
1460
<tr>
1461
<td align="center">
1462
1463
<div align="left" style="width:200px;">
1464
1465
<span style="font-size:14px;">
1466
<a data-toggle="tooltip" href="/Audi/TT (FV3)/tires" title="TT (FV3)">
1467
1468
<h3 style="font-size:14px;">
1469
TT (FV3)</h3>
1470
</a>
1471
</span>
1472
1473
</div>
1474
1475
</td>
1476
1477
<td align="center">
1478
1479
<div align="left" style="width:200px;">
1480
1481
<span style="font-size:14px;">
1482
<a data-toggle="tooltip" href="/Audi/TT Roadster (8J9)/tires" title="TT Roadster (8J9)">
1483
1484
<h3 style="font-size:14px;">
1485
TT Roadster (8J9)</h3>
1486
</a>
1487
</span>
1488
1489
</div>
1490
1491
</td>
1492
1493
<td align="center">
1494
1495
<div align="left" style="width:200px;">
1496
1497
<span style="font-size:14px;">
1498
<a data-toggle="tooltip" href="/Audi/TT Roadster (8N9)/tires" title="TT Roadster (8N9)">
1499
1500
<h3 style="font-size:14px;">
1501
TT Roadster (8N9)</h3>
1502
</a>
1503
</span>
1504
1505
</div>
1506
1507
</td>
1508
1509
<td align="center">
1510
1511
<div align="left" style="width:200px;">
1512
1513
<span style="font-size:14px;">
1514
<a data-toggle="tooltip" href="/Audi/TT Roadster (FV9)/tires" title="TT Roadster (FV9)">
1515
1516
<h3 style="font-size:14px;">
1517
TT Roadster (FV9)</h3>
1518
</a>
1519
</span>
1520
1521
</div>
1522
1523
</td>
1524
1525
</tr>
1526
</table>
1527
<
/p>
1528
1529
1530
1531
1532
<br/>
1533
1534
</div>
1535
1536
<Br/>
1537
<br/>
1538
1539
<hr/>
1540
1541
<div class="row">
1542
1543
<br/>
1544
<br/>
1545
1546
<p align="justify" class="text">
1547
1548
<br/>
1549
Please do not forget to check your vehicle with <a href="https://www.vindecoderz.com/EN/Audi">
1550
Audi VIN decoder</a>
1551
.
1552
<br/>
1553
See also this <a href="https://www.vinrush.com/en/Audi/free-vin-check">
1554
free Audi VIN check</a>
1555
tool in order to get vehicle history report.
1556
</p>
1557
1558
<div>
1559
1560
</div>
1561
1562
</div>
1563
1564
<
/main>
1565
1566
<hr/>
1567
1568
<footer class="container">
1569
1570
<p>
1571
TireSizeHelp© 2020</p>
1572
1573
<small>
1574
1575
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.
1576
</small>
1577
1578
</footer>
1579
1580
<br/>
1581
1582
<script src="https://getbootstrap.com/docs/4.1/assets/js/vendor/holder.min.js">
1583
</script>
1584
1585
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js">
1586
</script>
1587
1588
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js">
1589
</script>
1590
1591
<script src="https://getbootstrap.com/docs/4.1/examples/offcanvas/offcanvas.js">
1592
</script>
1593
1594
1595
<!-- Global site tag (gtag.js) - Google Analytics -->
1596
1597
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-4640919-18">
1598
</script>
1599
1600
<script>
1601
1602
window.dataLayer = window.dataLayer || [];
1603
function gtag(){dataLayer.push(arguments);}
1604
gtag('js', new Date());
1605
1606
gtag('config', 'UA-4640919-18');
1607
</script>
1608
1609
</body>
1610
1611
1612
</html>