-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudi_a4_2011.html
1517 lines (1432 loc) · 105 KB
/
audi_a4_2011.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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- This is the base template for our responsive pages -->
<html class="no-js" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Used to verify webmaster tools -->
<meta name="verify-v1" content="P+G8uxo9s17ps+E2UEXOnJq/3f/XZ7YlokhyOPTrS2o=">
<meta name="google-site-verification" content="_1cgFdB0a4CKV3i2uZ23L-DFRZjfqgeQ8Nbv0hBBdR4">
<meta name="msvalidate.01" content="7DCD612AD8E63D93862402FD2F476BDF">
<meta name="y_key" content="c8440d8af56defe4">
<link rel="canonical" href="https://cars.usnews.com/cars-trucks/audi/a4/2011">
<meta name="keywords" content="2011 Audi A4, 2011 Audi A4 Review, 2011 Audi A4 Pictures, 2011 Audi A4 for sale">
<meta name="description"
content="The 2011 Audi A4 is ranked #6 in 2011 Luxury Small Cars by U.S. News & World Report. See the full review, prices, specs and pictures.">
<title>2011 Audi A4 Prices, Reviews and Pictures | U.S. News & World Report</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,400i,500" rel="stylesheet">
<link type="text/css" rel="stylesheet" media="all" href="https://cars.usnews.com/static/css/responsive/main.rr20.css">
<link type="image/ico" rel="shortcut icon" href="https://cars.usnews.com/static/images/favicon.ico">
<meta property="og:title" content="2011 Audi A4 | U.S. News & World Report">
<meta property="og:type" content="website">
<meta property="og:image" content="https://cars.usnews.com/static/images/Auto/izmo/326191/2011_audi_a4_angularfront.jpg">
<meta property="og:url" content="/cars-trucks/audi/a4/2011">
<meta property="og:description"
content="The 2011 Audi A4 is ranked #6 in 2011 Luxury Small Cars by U.S. News & World Report. See the full review, prices, specs and pictures.">
<script type="text/javascript">
var _vis_opt_url = 'https://cars.usnews.com/vwo-used-car-profiles-overview-desktop' + (document.location.pathname).replace(/\/$/, '') + document.location.search;
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Review",
"itemReviewed": {
"@type": "Car",
"name": "2011 Audi A4",
"brand": "Audi",
"model": "A4",
"vehicleModelDate": "2011"
},
"reviewRating": {
"@type": "Rating",
"ratingValue": "8.3",
"worstRating": "1",
"bestRating": "10"
},
"datePublished": "2015-12-30",
"author": {
"@type": "Person",
"name": "U.S. News Best Cars Staff"
},
"publisher": {
"@type": "Organization",
"name": "U.S. News & World Report"
}
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://cars.usnews.com/cars-trucks",
"name": "Home"
}
}
,
{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://cars.usnews.com/cars-trucks/used-cars",
"name": "Used Cars"
}
}
,
{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://cars.usnews.com/cars-trucks/used-cars/audi",
"name": "Used Audi"
}
}
,
{
"@type": "ListItem",
"position": 4,
"item": {
"@id": "https://cars.usnews.com/cars-trucks/audi/a4/2011",
"name": "2011 Audi A4"
}
}
,
{
"@type": "ListItem",
"position": 5,
"item": {
"@id": "https://cars.usnews.com/cars-trucks/audi/a4/2011",
"name": "Overview"
}
}
]
}
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
var ga_accounts = [
['', 'UA-1727688-8']
];
function wt_track_pageview(f_tracking_url) {
for(var i in ga_accounts) {
var gacct = ga_accounts[i];
wt_track_custom_vars(gacct[0]);
if (f_tracking_url != "") {
_gaq.push([ gacct[0] + "_trackPageview" , f_tracking_url ]);
}
else {
_gaq.push([ gacct[0] + "_trackPageview" ]);
}
}
utag.view(utag_data);
}
function wt_track_custom_vars(gacct){
_gaq.push([gacct + '_setCustomVar',1,'Site Type','Full',3]);
}
function wt_track_event(event) {
for(var i in ga_accounts) {
var gacct = ga_accounts[i];
_gaq.push([gacct[0] + '_setAccount', gacct[1]]);
if('value' in event) {
_gaq.push(['_trackEvent', event.category, event.action, event.label, event.value, event.noninteraction]);
}
else if('label' in event) {
_gaq.push(['_trackEvent', event.category, event.action, event.label]);
}
else if ('noninteraction' in event) {
_gaq.push(['_trackEvent', event.category, event.action, event.value, null, event.noninteraction]);
}
else {
_gaq.push(['_trackEvent', event.category, event.action]);
}
}
}
function wt_track_timing(event) {
for(var i in ga_accounts) {
var gacct = ga_accounts[i];
_gaq.push([gacct[0] + '_setAccount', gacct[1]]);
_gaq.push(['_trackTiming', event.category, event.variable, event.time, event.label, event.sampleRate]);
}
}
function track_pageviews() {
var pluginUrl = '//www.google-analytics.com/plugins/ga/inpage_linkid.js';
_gaq.push(['_require', 'inpage_linkid', pluginUrl]);
_gaq.push(['_setAccount', 'UA-1727688-8']);
_gaq.push(['_setDomainName', '.usnews.com']);
wt_track_custom_vars('');
var l_tracker = "/cars-trucks/2011-Audi-A4/overview/";
_gaq.push(['_trackPageview', l_tracker]);
_gaq.push(['_trackPageLoadTime']);
_gaq.push(['_setCampaignCookieTimeout', 86400000]);
}
track_pageviews();
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript">
var utag_data = {
"model_year": "2011",
"make": "audi",
"model": "a4",
"tab": "overview",
"content_type": "product",
"site_product_section": "profile",
"page_type": "profile",
"site_portal": "reviews",
"tracking_url": "/cars-trucks/2011-Audi-A4/overview/",
"site_vertical": "autos"
};
</script>
<!-- Start Visual Website Optimizer Asynchronous Code -->
<script type="text/javascript">
// if vwo url is already set, just inject '/vwo-resp'
if (window._vis_opt_url) {
index = _vis_opt_url.indexOf('com') + 3;
_vis_opt_url = _vis_opt_url.slice(0, index) + '/vwo-resp' + _vis_opt_url.slice(index);
}
// if not set, get the url and make sure it has '/vwo-resp' in the url
else {
var _vis_opt_url = window.location.pathname;
_vis_opt_url = 'https://cars.usnews.com/vwo-resp' + _vis_opt_url;
}
</script>
<script type="text/javascript">
var _vwo_code=(function(){
var account_id=25361,
_vis_opt_url = window._vis_opt_url || document.URL,
settings_tolerance=2000,
library_tolerance=2500,
use_existing_jquery=false,
// DO NOT EDIT BELOW THIS LINE
f=false,d=document;return{use_existing_jquery:function(){return use_existing_jquery;},library_tolerance:function(){return library_tolerance;},finish:function(){if(!f){f=true;var a=d.getElementById('_vis_opt_path_hides');if(a)a.parentNode.removeChild(a);}},finished:function(){return f;},load:function(a){var b=d.createElement('script');b.src=a;b.type='text/javascript';b.innerText;b.onerror=function(){_vwo_code.finish();};d.getElementsByTagName('head')[0].appendChild(b);},init:function(){settings_timer=setTimeout('_vwo_code.finish()',settings_tolerance);var a=d.createElement('style'),b='body{opacity:0 !important;filter:alpha(opacity=0) !important;background:none !important;}',h=d.getElementsByTagName('head')[0];a.setAttribute('id','_vis_opt_path_hides');a.setAttribute('type','text/css');if(a.styleSheet)a.styleSheet.cssText=b;else a.appendChild(d.createTextNode(b));h.appendChild(a);this.load('//dev.visualwebsiteoptimizer.com/j.php?a='+account_id+'&u='+encodeURIComponent(_vis_opt_url)+'&r='+Math.random());return settings_timer;}};}());_vwo_settings_timer=_vwo_code.init();
</script>
<!-- End Visual Website Optimizer Asynchronous Code -->
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '217961268539487');
fbq('track', 'PageView', {
content_type: 'product',
content_ids: ['326186']
});
</script>
<noscript>
<img height="1" width="1" src="https://www.facebook.com/tr?id=217961268539487&amp;ev=PageView&amp;noscript=1">
</noscript>
</head>
<body class="">
<noscript>
<div class="noscript-message">
You have JavaScript disabled in your browser, which may affect your experience on our website.
<a href="https://www.enable-javascript.com/" target="_blank">See how to enable JavaScript</a>
</div>
<style>
.noscript-message {
background: red;
color: white;
padding: 0.3rem;
border: 1px solid white;
text-align: center;
}
.noscript-message a {
color: white;
text-decoration: underline;
}
</style>
</noscript>
<script type="text/javascript" src="https://cars.usnews.com/static/scripts/responsive/prod/libs.min.js"></script>
<div class="off-canvas-wrapper">
<div class="off-canvas position-right" id="offCanvas" data-off-canvas data-auto-focus>
<!-- Close button -->
<button class="close-button off-canvas__close-button" aria-label="Close menu" type="button" data-close><span aria-hidden="true">×</span></button>
<!-- Menu -->
<ul class="vertical menu" data-drilldown>
<h4 class="off-canvas__header">Cars</h4>
<form method="post" action="" id="side-mmy-form" class="side-mmy-form">
<input type="hidden" name="csrfmiddlewaretoken" value="Bz1VLXilhqDk7KzPWxydpExB5ViE7n8xoaIGf1nqh4SKpy90gbkFElqwKVODFymx">
<fieldset>
<select id="side-mmy-make" name="auto_make" class="off-canvas__select car_make" data-role="none" disabled="true">
<option value="ALL BRANDS">Make</option>
</select>
<select id="side-mmy-model" name="auto_model" class="off-canvas__select car_model" data-role="none" disabled="true">
<option value="-1">Model</option>
</select>
<select id="side-mmy-year" name="finder_year" class="off-canvas__select car_year" data-role="none" disabled="true">
<option value="-1">Year</option>
</select>
<a id="side-mmy-submit" class="side-mmy-form__search car_submit button button--blue vwo-mmy-dropdown">
<svg class="side-mmy-form__icon">
<title>Search</title>
<use xlink:href="/images/responsive/icons.rr4.svg#search"></use>
</svg>
Find a Car</a>
</fieldset>
</form>
<li><a href="/cars-trucks/browse" class="off-canvas__link ">New Cars »</a>
<ul class="vertical menu">
<li><a href="/cars-trucks/browse" class="off-canvas__link text-white ">New Cars</a></li>
<li><a href="/cars-trucks/new-cars/for-sale" class="off-canvas__link ">Search Dealer Inventory</a></li>
<li><a href="/cars-trucks/browse" class="off-canvas__link ">Research Cars</a></li>
<li><a href="/cars-trucks/best-price-program" class="off-canvas__link ">Best Price Program</a></li>
<li><a href="/cars-trucks/rankings" class="off-canvas__link ">New Car Rankings</a></li>
<li><a href="/cars-trucks/best-car-deals" class="off-canvas__link ">Car Deals this Month</a></li>
<li><a href="/cars-trucks/compare" class="off-canvas__link ">Compare Cars</a></li>
<li><a href="/cars-trucks/financing/car-payment-calculator" class="off-canvas__link ">Calculate Car Payment</a></li>
</ul>
</li>
<li><a href="/cars-trucks/used-cars" class="">Used Cars »</a>
<ul class="vertical menu">
<li><a href="/cars-trucks/used-cars" class="text-white ">Used Cars</a></li>
<li><a href="/cars-trucks/used-cars/for-sale" class="">Search Dealer Inventory</a></li>
<li><a href="/cars-trucks/used-cars/for-sale?cpo=on" class="">Search Certified Pre-Owned</a></li>
<li><a href="/cars-trucks/rankings/used" class="">Used Car Rankings</a></li>
<li><a href="/cars-trucks/best-car-deals/used-car-sales-and-deals" class="">Used Car Deals this Month</a></li>
<li><a href="/cars-trucks/compare" class="">Compare Used Cars</a></li>
<li><a href="/cars-trucks/financing/car-payment-calculator" class="">Calculate Used Car Payment</a></li>
</ul>
</li>
<li><a href="/cars-trucks/rankings" class="">Car Rankings »</a>
<ul class="vertical menu">
<li><a href="/cars-trucks/rankings" class="text-white ">Car Rankings</a></li>
<li><a href="/cars-trucks/rankings" class="">New Car Rankings</a></li>
<li><a href="/cars-trucks/rankings/used" class="">Used Car Rankings</a></li>
<li><a href="/cars-trucks/best-cars-for-the-money" class="">Best Cars for the Money</a></li>
<li><a href="/cars-trucks/best-cars-for-families" class="">Best Cars for Families</a></li>
<li><a href="/cars-trucks/best-vehicle-brand-awards" class="">Best Vehicle Brands</a></li>
</ul>
</li>
<li><a href="/cars-trucks/used-cars/for-sale">Cars for Sale »</a>
<ul class="vertical menu">
<li><a href="/cars-trucks/used-cars/for-sale" class="text-white">Cars for Sale</a></li>
<li><a href="/cars-trucks/new-cars/for-sale">Search New Dealer Inventory</a></li>
<li><a href="/cars-trucks/used-cars/for-sale">Search Used Dealer Inventory</a></li>
<li><a href="/cars-trucks/used-cars/for-sale?cpo=on">Search Certified Pre-Owned</a></li>
</ul>
</li>
<li><a href="/cars-trucks/best-cars-blog" class="">Advice</a></li>
<li><a href="/cars-trucks/best-car-deals" class="">Best Deals »</a>
<ul class="vertical menu">
<li><a href="/cars-trucks/best-car-deals" class="text-white ">Best Deals</a></li>
<li><a href="/cars-trucks/best-car-deals" class="">New Car Deals</a></li>
<li><a href="/cars-trucks/best-car-deals/car-lease-deals" class="">Lease Deals</a></li>
<li><a href="/cars-trucks/best-car-deals/used-car-sales-and-deals" class="">Used Car Deals</a></li>
</ul>
</li>
<li class="off-canvas__subheader">More from U.S. News</li>
<li><a href="http://www.usnews.com/news">News & Opinion »</a>
<ul class="vertical menu">
<li><a href="https://www.usnews.com/news" class="text-white">News & Opinion</a></li>
<li><a href="https://www.usnews.com/news">News</a></li>
<li><a href="https://www.usnews.com/opinion">Opinion</a></li>
<li><a href="https://www.usnews.com/photos">Photos</a></li>
<li><a href="http://video.usnews.com/">Video</a></li>
<li><a href="https://www.usnews.com/news/best-countries">Best Countries</a></li>
<li><a href="https://www.usnews.com/news/the-report">The Report</a></li>
</ul>
</li>
<li><a href="http://www.usnews.com/education">Education »</a>
<ul class="vertical menu">
<li><a class="text-white" href="https://www.usnews.com/education">Education</a></li>
<li><a href="https://www.usnews.com/education">Higher Education</a></li>
<ul class="side-submenu">
<li class="text-small"><a href="https://www.usnews.com/best-colleges/rankings">Rankings</a></li>
<li class="text-small"><a href="https://www.usnews.com/best-colleges">Colleges</a></li>
<li class="text-small"><a href="https://www.usnews.com/best-graduate-schools">Grad Schools</a></li>
<li class="text-small"><a href="https://www.usnews.com/education/online-education">Online Programs</a></li>
<li class="text-small"><a href="https://www.usnews.com/education/best-global-universities">Global</a></li>
<li class="text-small"><a href="https://www.usnews.com/education/best-colleges/advice">Advice</a></li>
</ul>
<li><a href="https://www.usnews.com/education/best-high-schools">High Schools</a></li>
<ul class="side-submenu">
<li><a href="https://www.usnews.com/education/best-high-schools/rankings-overview">Rankings</a></li>
<li><a href="https://www.usnews.com/education/best-high-schools/advice">Advice</a></li>
</ul>
</ul>
</li>
<li><a href="http://health.usnews.com/">Health »</a>
<ul class="vertical menu">
<li><a class="text-white" href="http://health.usnews.com/">Health</a></li>
<li><a href="http://health.usnews.com/wellness">Wellness</a></li>
<ul class="side-submenu">
<li class="text-small"><a href="http://health.usnews.com/best-diet">Best Diets</a></li>
<li class="text-small"><a href="http://health.usnews.com/wellness/food">Food</a></li>
<li class="text-small"><a href="http://health.usnews.com/wellness/fitness">Fitness</a></li>
<li class="text-small"><a href="http://health.usnews.com/wellness/family">Family</a></li>
<li class="text-small"><a href="http://health.usnews.com/wellness/mind">Mind</a></li>
<li class="text-small"><a href="http://health.usnews.com/wellness/aging">Aging</a></li>
<li class="text-small"><a href="http://health.usnews.com/wellness/healthy-living">Health Living</a></li>
</ul>
<li><a href="http://health.usnews.com/health-care">Healthcare</a></li>
<ul class="side-submenu">
<li class="text-small"><a href="http://health.usnews.com/doctors">Doctors</a></li>
<li class="text-small"><a href="http://health.usnews.com/best-hospitals">Hospitals</a></li>
</ul>
<li><a href="http://health.usnews.com/best-nursing-homes">Senior Care</a></li>
</ul>
</li>
<li><a href="http://money.usnews.com/">Money »</a>
<ul class="vertical menu">
<li><a href="http://money.usnews.com/" class="text-white">Money</a></li>
<li><a href="http://money.usnews.com/careers">Careers</a></li>
<ul class="side-submenu">
<li class="text-small"><a href="http://money.usnews.com/careers/best-jobs/rankings">Best Jobs</a></li>
<li class="text-small"><a href="http://money.usnews.com/careers/advice/applying">Applying</a></li>
<li class="text-small"><a href="http://money.usnews.com/careers/advice/interviewing">Interviewing</a></li>
<li class="text-small"><a href="http://money.usnews.com/careers/advice/salaries-and-benefits">Salaries & Benefits</a></li>
<li class="text-small"><a href="http://money.usnews.com/careers/advice/work-culture">Work Culture</a></li>
</ul>
<li><a href="http://money.usnews.com/investing">Investing</a></li>
<ul class="side-submenu">
<li class="text-small"><a href="http://money.usnews.com/investing/stocks/rankings">Rankings</a></li>
<li class="text-small"><a href="http://money.usnews.com/investing/stocks">Stocks</a></li>
<li class="text-small"><a href="http://money.usnews.com/funds/mutual-funds">Mutual Funds</a></li>
<li class="text-small"><a href="http://money.usnews.com/funds/etfs">ETFs</a></li>
<li class="text-small"><a href="http://money.usnews.com/financial-advisors">Financial Advisors</a></li>
<li class="text-small"><a href="http://money.usnews.com/529s">529s</a></li>
<li class="text-small"><a href="http://money.usnews.com/investing/advice">Advice</a></li>
</ul>
<li><a href="http://money.usnews.com/money/personal-finance">Personal Finance</a></li>
<li><a href="http://realestate.usnews.com/">Real Estate</a></li>
<ul class="side-submenu">
<li class="text-small"><a href="http://realestate.usnews.com/places">Places</a></li>
<li class="text-small"><a href="http://realestate.usnews.com/agents/">Agents</a></li>
<li class="text-small"><a href="https://www.usnews.com/topics/subjects/real-estate">Advice</a></li>
</ul>
<li><a href="http://money.usnews.com/money/retirement">Retirement</a></li>
</ul>
</li>
<li><a href="http://travel.usnews.com/">Travel »</a>
<ul class="vertical menu">
<li><a href="http://travel.usnews.com/" class="text-white">Travel</a></li>
<ul class="side-submenu">
<li class="text-small"><a href="http://travel.usnews.com/rankings/">Vacations</a></li>
<li class="text-small"><a href="http://travel.usnews.com/hotels/">Hotels</a></li>
<li class="text-small"><a href="http://travel.usnews.com/cruises/">Cruises</a></li>
<li class="text-small"><a href="http://travel.usnews.com/rankings/travel-rewards/">Rewards</a></li>
<li class="text-small"><a href="http://travel.usnews.com/features/">Advice</a></li>
</ul>
</ul>
</li>
<li><a href="/cars-trucks">Cars »</a>
<ul class="vertical menu">
<li><a href="/cars-trucks" class="text-white">Cars</a></li>
<ul class="side-submenu">
<li class="text-small"><a href="/cars-trucks/browse">New Cars</a></li>
<li class="text-small"><a href="/cars-trucks/used-cars">Used Cars</a></li>
<li class="text-small"><a href="/cars-trucks/rankings">Car Rankings</a></li>
<li class="text-small"><a href="/cars-trucks/best-cars-blog">Advice</a></li>
<li class="text-small"><a href="/cars-trucks/best-car-deals">Best Deals</a></li>
</ul>
</ul>
</li>
<li><a href="http://bestlawfirms.usnews.com/">Law Firms »</a>
<ul class="vertical menu">
<li><a class="text-white" href="http://bestlawfirms.usnews.com/">Law Firms</a></li>
<ul class="side-submenu">
<li class="text-small"><a href="http://bestlawfirms.usnews.com/">Law Firms</a></li>
<li class="text-small"><a href="http://bestlawfirms.usnews.com/practiceareas.aspx">Practice Areas</a></li>
</ul>
</ul>
</li>
<li><a href="http://realestate.usnews.com/">Real Estate</a></li>
<li><a class="misc-links misc-links--first" href="/contactUs/">Contact</a></li>
<li><a class="misc-links" href="http://www.usnews.com/info/features/employment">Employment</a></li>
<li><a class="misc-links" href="http://mediakit.usnews.com/index.php">Advertising</a></li>
<li><a class="misc-links" href="/siteMap/">Site Map</a></li>
<li><a class="misc-links" href="http://www.usnews.com/info/features/terms">Privacy / Term & Conditions</a></li>
<ul>
<li class="social"><a href="https://www.facebook.com/usnewsandworldreport" class="social__link" target="_blank">
<svg class="social__icon" viewbox="0 0 24 24">
<use xlink:href="/images/responsive/icons.rr4.svg#facebook"></use>
</svg>
</a></li>
<li class="social"><a href="https://twitter.com/USNewsCars" class="social__link" target="_blank">
<svg class="social__icon" viewbox="0 0 24 24">
<use xlink:href="/images/responsive/icons.rr4.svg#twitter"></use>
</svg>
</a></li>
<li class="social"><a href="https://plus.google.com/+usnewsworldreport" class="social__link" target="_blank">
<svg class="social__icon" viewbox="0 0 24 24">
<use xlink:href="/images/responsive/icons.rr4.svg#google-plus"></use>
</svg>
</a></li>
</ul>
<!-- end Social Media ul -->
</ul>
<!-- end Menu ul -->
</div>
<!--off-canvas-->
<div class="off-canvas-content" data-off-canvas-content>
<header class="header">
<div class="inner-wrap">
<nav class="tab-bar header-nav">
<a class="" href="http://www.usnews.com"> <img class="usn-logo" alt="U.S. News & World Report"
data-interchange="[/images/responsive/usn-logo-small.svg, small], [/images/responsive/usn-logo-large.svg, large]">
</a>
<ul class="header-links inline-block dropdown menu" data-dropdown-menu data-close-on-click-inside="false">
<li class="header-links__li show-for-large"><a href="/cars-trucks" class="header-links__link header-links__link--cars">Cars »</a></li>
<li class="header-links__li hide-for-large"><a href="/cars-trucks" class="header-links__link header-links__link--cars">Cars</a></li>
<li class="header-links__li show-for-large is-dropdown-submenu-parent"><a href="/cars-trucks/browse" class="header-links__link">New
Cars</a>
<ul class="menu">
<li><a href="/cars-trucks/new-cars/for-sale">Search Dealer Inventory</a></li>
<li><a href="/cars-trucks/browse">Research Cars</a></li>
<li><a href="/cars-trucks/best-price-program">Best Price Program</a></li>
<li><a href="/cars-trucks/rankings">New Car Rankings</a></li>
<li><a href="/cars-trucks/best-car-deals">Car Deals this Month</a></li>
<li><a href="/cars-trucks/compare">Compare Cars</a></li>
<li><a href="/cars-trucks/financing/car-payment-calculator">Calculate Car Payment</a></li>
</ul>
</li>
<li class="header-links__li show-for-large is-dropdown-submenu-parent"><a href="/cars-trucks/used-cars" class="header-links__link">Used
Cars</a>
<ul class="menu">
<li><a href="/cars-trucks/used-cars/for-sale">Search Dealer Inventory</a></li>
<li><a href="/cars-trucks/used-cars/for-sale?cpo=on">Search Certified Pre-Owned</a></li>
<li><a href="/cars-trucks/rankings/used">Used Car Rankings</a></li>
<li><a href="/cars-trucks/best-car-deals/used-car-sales-and-deals">Used Car Deals this Month</a></li>
<li><a href="/cars-trucks/compare">Compare Used Cars</a></li>
<li><a href="/cars-trucks/financing/car-payment-calculator">Calculate Used Car Payment</a></li>
</ul>
</li>
<li class="header-links__li show-for-large is-dropdown-submenu-parent"><a href="/cars-trucks/rankings" class="header-links__link">Car
Rankings</a>
<ul class="menu">
<li><a href="/cars-trucks/rankings">New Car Rankings</a></li>
<li><a href="/cars-trucks/rankings/used">Used Car Rankings</a></li>
<li><a href="/cars-trucks/best-cars-for-the-money">Best Cars for the Money</a></li>
<li><a href="/cars-trucks/best-cars-for-families">Best Cars for Families</a></li>
<li><a href="/cars-trucks/best-vehicle-brand-awards">Best Vehicle Brands</a></li>
</ul>
</li>
<li class="header-links__li show-for-xlarge is-dropdown-submenu-parent"><a href="/cars-trucks/used-cars/for-sale"
class="header-links__link">Cars for Sale</a>
<ul class="menu">
<li><a href="/cars-trucks/new-cars/for-sale">Search New Dealer Inventory</a></li>
<li><a href="/cars-trucks/used-cars/for-sale">Search Used Dealer Inventory</a></li>
<li><a href="/cars-trucks/used-cars/for-sale?cpo=on">Search Certified Pre-Owned</a></li>
</ul>
</li>
<li class="header-links__li show-for-large"><a href="/cars-trucks/best-cars-blog" class="header-links__link">Advice</a></li>
<li class="header-links__li--car-deals show-for-large is-dropdown-submenu-parent"><a href="/cars-trucks/best-car-deals"
aria-controls="best-car-deals"
aria-expanded="false"
class="button button--red dropdown car-deals">Best
Car Deals</a>
<ul class="best-car-deals f-dropdown" id="best-cars-deals-1" aria-hidden="true">
<li><a href="/cars-trucks/best-car-deals">New Car Deals</a></li>
<li><a href="/cars-trucks/best-car-deals/car-lease-deals">Lease Deals</a></li>
<li><a href="/cars-trucks/best-car-deals/used-car-sales-and-deals">Used Car Deals</a></li>
</ul>
</li>
</ul>
<section class="header-nav__right">
<!-- Don't display on the homepage -->
<form method="post" action="" id="auto-finder" class="auto-finder">
<input type="hidden" name="csrfmiddlewaretoken" value="Bz1VLXilhqDk7KzPWxydpExB5ViE7n8xoaIGf1nqh4SKpy90gbkFElqwKVODFymx">
<fieldset class="auto-finder__fieldset">
<!-- id auto-make -->
<select id="header_nav_finder_make" name="auto_make"
class="car_make auto-finder__select auto-finder__select--make show-for-large" data-role="none">
<option value="ALL BRANDS">Make</option>
</select>
<select id="header_nav_finder_model" name="auto_model"
class="car_model auto-finder__select auto-finder__select--model show-for-large" data-role="none" disabled>
<option value="-1">Model</option>
</select>
<select id="header_nav_finder_year" name="finder_year"
class="car_year auto-finder__select auto-finder__select--year show-for-large" data-role="none" disabled>
<option value="-1">Year</option>
</select>
<a id="header_nav_finder_submit" class="car_submit show-for-large vwo-mmy-dropdown">
<svg id="auto-finder-search" class="icon search" viewbox="0 0 64 64">
<title>Search</title>
<use xlink:href="/images/responsive/icons.rr4.svg#search"></use>
</svg>
</a>
</fieldset>
</form>
<a data-open="modal-mmy" class="hide-for-large">
<svg id="auto-finder-search" class="icon search">
<use xlink:href="/images/responsive/icons.rr4.svg#search"></use>
</svg>
</a>
<div id="modal-mmy" class="modal-mmy reveal full" data-reveal aria-labelledby="modal-mmy-title" aria-hidden="true" role="dialog">
<h2 id="modal-mmy-title" class="modal-mmy__title">Find A Car</h2>
<form method="post" action="" id="modal-mmy-form" class="modal-mmy__form">
<input type="hidden" name="csrfmiddlewaretoken" value="Bz1VLXilhqDk7KzPWxydpExB5ViE7n8xoaIGf1nqh4SKpy90gbkFElqwKVODFymx">
<fieldset>
<select id="modal-mmy-make" name="auto_make" class="car_make modal-mmy__select" data-role="none" tabindex="1">
<option value="ALL BRANDS">Make</option>
</select>
<select id="modal-mmy-model" name="auto_model" class="car_model modal-mmy__select" data-role="none" tabindex="2">
<option value="-1">Model</option>
</select>
<select id="modal-mmy-year" name="finder_year" class="car_year modal-mmy__select" data-role="none" tabindex="3">
<option value="-1">Year</option>
</select>
<a id="modal-mmy-submit" class="car_submit button button--red expanded text-normal vwo-mmy-dropdown" tabindex="4">Search
Cars</a>
</fieldset>
</form>
<button class="modal-mmy__close close-button" data-close aria-label="Close modal" type="button"><span aria-hidden="true">×</span>
</button>
</div>
<div class="title-bar-right">
<button id="sidebar-icon" class="menu-icon" type="button" data-open="offCanvas"></button>
</div>
</section>
</nav>
<!-- Don't show banner ad if homepage -->
<section class="row align-center banner-ad banner-ad--header-box">
<div class="show-for-large banner-ad--header"></div>
</section>
</div>
<!--inner-wrap-->
</header>
<section>
<div>
<section class="row bc-container show-for-large">
<article class="small-8 columns">
<ul id="breadcrumbs" class="breadcrumbs breadcrumbs--overview">
<li><a href="/cars-trucks">Home</a></li>
<li><a href="/cars-trucks/used-cars">Used Cars</a></li>
<li><a href="/cars-trucks/used-cars/audi">Used Audi</a></li>
<li><a href="/cars-trucks/audi/a4/2011">2011 Audi A4</a></li>
<li>Overview</li>
</ul>
</article>
</section>
<!-- end breadcrumbs & social -->
</div>
</section>
<section class="row hero-row">
<article class="small-12 medium-7 large-7 columns">
<h1 class="hero-title__header--overview">2011 Audi A4</h1>
<!-- title -->
<h3 class="hero-title__subheader hero-title__subheader--overview">#6 in <a href="/cars-trucks/rankings/used/2011-upscale-small-cars"
class="vwo-rankings-header-link">2011 Luxury Small Cars</a></h3>
</article>
</section>
<div data-sticky-container>
<div class="full-width product-nav-container" data-options="marginTop:0;" data-top-anchor="product-content" data-btm-anchor="product-footer"
data-sticky-on="small">
<nav class="row product-nav overview column">
<ul class="full-width menu product-nav__menu align-justify">
<li class="product-nav__li"><a class="product-nav__links product-nav__links--active vwo-profile-nav-review"
href="/cars-trucks/audi/a4/2011">Review</a></li>
<li class="product-nav__li"><a class="product-nav__links vwo-profile-nav-photos"
href="/cars-trucks/audi/a4/2011/photos-exterior">Photos</a></li>
<li class="product-nav__li"><a class="product-nav__links vwo-profile-nav-prices" href="/cars-trucks/audi/a4/2011/prices">Prices</a></li>
<li class="product-nav__li"><a class="product-nav__links vwo-profile-nav-specs" href="/cars-trucks/audi/a4/2011/specs">Specs</a></li>
<li class="product-nav__li"><a href="/cars-trucks/used-cars/for-sale/audi_a4" class="product-nav__links vwo-profile-nav-inventory"
onclick="wt_track_event({category:'OverviewUsedReview',action:'SubNav',label:'LocInvLink'});">Local
Inventory</a></li>
<li class="product-nav__li"><a href="/cars-trucks/audi/a4/owners" class="product-nav__links vwo-profile-nav-repairs">Repairs</a></li>
<li class="product-nav__li"><a class="product-nav__links vwo-profile-nav-reliability" href="/cars-trucks/audi/a4/2011/reliability">Reliability</a>
</li>
<button class="product-nav__bpp quote-submit-btn button button--red show-for-large vwo-inventory-sticky">View Local Inventory</button>
<form action="/cars-trucks/used-cars/for-sale/audi_a4" method="get"></form>
</ul>
</nav>
</div>
</div>
<section id="product-content" class="row product-content">
<article class="small-12 large-8 columns">
<section class="row overview-container">
<article class="small-12 medium-7 columns profile-header__photo-box">
<a href="/cars-trucks/audi/a4/2011/photos-exterior" class="vwo-photos-header-image"> <img
src="https://cars.usnews.com/static/images/Auto/izmo/326191/2011_audi_a4_angularfront.jpg" alt="">
<!-- photo --> </a>
<a href="/cars-trucks/audi/a4/2011/photos-exterior"
class="banner__photos-icon-link heading-normal flex-container align-middle vwo-photos-header-link">
<svg class="banner__photos-icon" viewbox="0 0 64 64">
<use xlink:href="/images/responsive/icons.rr4.svg#camera"></use>
</svg>
<span>View More Photos »</span> </a>
</article>
<article class="small-12 medium-5 columns profile-header__bpp-box">
<article class="bpp-widget">
<h4 class="show-for-large">Search Used Listings</h4>
<p class="bpp-widget__bpp-text show-for-large">Enter your zip code to search used A4 listings in your area.</p>
<label class="bpp-widget__avg-price-paid-label">Avg Price Paid:</label>
<span class="bpp-widget__avg-price-paid nowrap">$7,976 <span class=""> - $11,057</span></span>
<label class="normal show-for-large">Original MSRP:</label>
<span class="bold line-through nowrap show-for-large">$32,300 - $34,500</span>
<div class="bpp-widget__overview-form-box">
<form action="/cars-trucks/used-cars/for-sale/audi_a4" method="get" class="flex-container">
<input type="text" name="zip" class="zipCode zip-field bpp-widget__zip" placeholder="Zip Code">
<input class="quote-submit-input button button--red bpp-widget__btn bpp-widget__btn--input vwo-inventory-profile-header"
type="submit" value="View Local Inventory"
onclick="wt_track_event({category:'OverviewUsedReview',action:'SearchZipBox',label:'TopInvButton'});">
</form>
</div>
</article>
</article>
<div class="small-12 columns profile-header__hr"></div>
<article class="small-12 columns overview-header">
<div class="prev-years-links__wrapper">
<ul class="prev-years-links text-small">
<li class="bold prev-years-links__list-name">Other Years:</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4">2018</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2017">2017</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2016">2016</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2015">2015</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2014">2014</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2013">2013</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2012">2012</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo">2011</li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2010">2010</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2009">2009</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2008">2008</a></li>
<li class="prev-years-links__pipe">|</li>
<li class="jumbo"><a href="/cars-trucks/audi/a4/2007">2007</a></li>
</ul>
</div>
<article class="small-12 medium-7 top-rankings-headline">
<h2>Rankings & Research</h2>
<p>The 2011 Audi A4 ranking is based on its score within the <a href="/cars-trucks/rankings/used/2011-upscale-small-cars"
class="vwo-rankings-awards-link">2011 Luxury Small Cars</a>
category. Currently the Audi A4 has a score of 8.3 out of 10 which is based on our evaluation of 41 pieces of research and data
elements using various <a href="/cars-trucks/audi/a4/2011/sources">sources</a>.</p>
<ul class="rankings">
<li class="rankings__item"><span class="bold">#6</span> in <a class="vwo-rankings-awards-link"
href="/cars-trucks/rankings/used/2011-upscale-small-cars">2011
Luxury Small Cars</a></li>
<li class="rankings__item"><span class="bold">#25</span> in <a class="vwo-rankings-awards-link"
href="/cars-trucks/rankings/used/upscale-small-cars-1">Used
Luxury Small Cars under $20K</a></li>
</ul>
</article>
<article class="small-12 medium-5 full-width">
<div class="scorecard full-width">
<div class="scorecard__heading clearfix">
<div class="float-right scorecard__overall-score-container text-right">
<p class="scorecard__score">8.3</p>
<p class="scorecard__score-label">Overall</p>
</div>
<div class="scorecard__title-container float-left">
<img alt="U.S. News & World Report" class="block-tight scorecard__logo" src="/images/responsive/usn-logo-large.svg"
width="88">
<h4 class="scorecard__label">Scorecard</h4>
</div>
</div>
<div class="scorecard-body scorecard__body">
<article class="small-4 columns">
</article>
<article class="reliability-container small-8 columns">
</article>
<table class="scorecard-list scorecard__list">
<tbody class="display-block">
<!-- do not include overall score in used scorecard -->
<tr class="display-block clearfix block-tighter">
<td class="float-left item scorecard__value-label"> Critics' Rating:</td>
<td class="float-right item scorecard__value-label">8.9</td>
</tr>
<tr class="display-block clearfix block-tighter">
<td class="float-left item scorecard__value-label"> Performance:</td>
<td class="float-right item scorecard__value-label">8.5</td>
</tr>
<tr class="display-block clearfix block-tighter">
<td class="float-left item scorecard__value-label"> Interior:</td>
<td class="float-right item scorecard__value-label">8.9</td>
</tr>
<tr class="display-block clearfix block-tighter">
<td class="float-left item scorecard__value-label"> Total Cost of Ownership:</td>
<td class="float-right item scorecard__value-label">8.6</td>
</tr>
<tr class="display-block clearfix block-tighter">
<td class="float-left item scorecard__value-label"> Safety:</td>
<td class="float-right item scorecard__value-label">9.6</td>
</tr>
<tr class="reliability-row">
<td class="item scorecard__value-label inline-block">Reliability:</td>
<td class="display-block float-right scorecard__value-td"><a href="http://autos.jdpower.com/" target="_blank">
<div style="width: calc( (3.0/5) * 100%)" class="reliability float-left" alt="3.0">
<span class="reliability__circle reliability__circle--filled"></span>
<span class="reliability__circle reliability__circle--filled"></span>
<span class="reliability__circle reliability__circle--filled"></span>
<span class="reliability__circle reliability__circle--filled"></span>
<span class="reliability__circle reliability__circle--filled"></span>
</div>
<div style="width: calc( 98% - (3.0/5) * 100%)" class="reliability rtl reliability--remainder">
<span class="reliability__circle"></span>
<span class="reliability__circle"></span>
<span class="reliability__circle"></span>
<span class="reliability__circle"></span>
<span class="reliability__circle"></span>
</div>
<img class="right" src="https://cars.usnews.com/static/images/cars-trucks/jdpower/JDPowerLogo_small.png"
alt="J.D. Power Ratings Logo"> </a></td>
</tr>
</tbody>
</table>
<!-- end scorecard-list -->
</div>
<!-- end scorecard-body-->
</div>
<!-- end scorecard-->
</article>
</article>
<article class="small-12 columns">
<section class="row listings-widget listings-widget--used" id="listings-widget">
</section>
</article>
<article class="small-12 columns review-title">
<h2 class="review-title__title">2011 Audi A4 Review</h2>
<span class="review-title__byline text-smaller"> by U.S. News Best Cars Staff | December 30, 2015</span>
<p>If you’re looking for a car with a good balance of athleticism and reasonably good fuel economy, the 2011 Audi A4 is a compelling
choice. The A4 will also impress with its upscale, opulent interior and excellent safety scores.</p>
</article>
<article class="small-12 medium-6 columns pros-cons glance">
<h4 class="glance__title">Pros & Cons</h4>
<ul>
<li>Balanced handling and comfortable ride</li>
<li>High-quality interior</li>
<li>Good fuel economy</li>
<li>High safety score</li>
</ul>
<ul>
<li>Less powerful than many rivals</li>
<li>Limited trunk space</li>
</ul>
</article>
<article class="small-12 medium-6 columns glance new-glance">
<h4 class="glance__title">New for 2011</h4>
<ul>
<li>New eight-speed automatic transmission available on Quattro models</li>
</ul>
<a class="glance__a display-none js-read-more" href=""><span>See all New for 2011</span>
<svg viewbox="0 0 64 64" class="icon small link glance__icon">
<use xlink:href="/images/responsive/icons.rr4.svg#chevron"></use>
</svg>
</a>
</article>
<article class="flex-container full-width">
<section class="small-12 columns specs-bar">
<h4 class="specs-bar__title">Features & Specs</h4>
<article class="row column">
<article class="small-6 medium-3 columns specs-bar__section">
<svg id="seatingIcon" class="specs-bar__icon" viewbox="0 0 64 64">
<use xlink:href="/images/responsive/icons.rr4.svg#seating"></use>
</svg>
<div id="seatingInfo" class="specs-bar__info">
<strong class="block">5</strong>
<p class="specs-bar__label">SEATING</p>
</div>
</article>
<article id="mpg" class="small-6 medium-3 columns specs-bar__section">
<svg id="mpgIcon" class="specs-bar__icon" viewbox="0 0 64 64">
<use xlink:href="/images/responsive/icons.rr4.svg#mpg"></use>
</svg>
<div class="mpg specs-bar__info">
<strong class="inline">21-23</strong>
<p class="specs-bar__label"> CITY</p>
<br>
<strong class="inline">27-30</strong>
<p class="specs-bar__label"> HWY</p>
</div>
</article>
<article id="drivetrain" class="small-6 medium-3 columns specs-bar__section">
<svg id="drivetrainIcon" class="specs-bar__icon" viewbox="0 0 64 64">
<use xlink:href="/images/responsive/icons.rr4.svg#drivetrain"></use>
</svg>
<div id="drivetrainInfo" class="specs-bar__info">
<strong class="block">, FWD</strong>
<p class="specs-bar__label">DRIVETRAIN</p>
</div>
</article>
<article id="hp" class="small-6 medium-3 columns specs-bar__section">
<svg id="hpIcon" class="specs-bar__icon" viewbox="0 0 64 64">
<use xlink:href="/images/responsive/icons.rr4.svg#hp"></use>
</svg>
<div id="hp" class="specs-bar__info">
<strong class="block">211</strong>
<p class="specs-bar__label">HORSEPOWER</p>
</div>
</article>
</article>
<!-- end horsepower -->
<a class="small-12 columns no-left-pad vwo-specs-review-link" href="/cars-trucks/audi/a4/2011/specs">See full 2011 Audi A4 specs
»</a>
</section>
</article>
<article class="small-12 columns">
<article class="photos-widget">
<h4 class="photos-widget__title show-for-medium">Photos</h4>
<ul class="row column photos-widget__ul">
<li class="small-12 medium-4 large-4 columns photos-widget__lg-photo"><a class="vwo-photos-widget-link"
href="/cars-trucks/audi/a4/2011/photos-exterior/angular-front"><img
class="photos-widget__img photos-widget__img--lg "
data-src="https://cars.usnews.com/dims4/USNEWS/26c4e22/2147483647/resize/390x290%3E/format/jpeg/quality/85/?url=https%3A%2F%2Fcars.usnews.com%2Fstatic%2Fimages%2FAuto%2Fizmo%2F326191%2F2011_audi_a4_angularfront.jpg"
alt="2011 Audi A4 Angular Front" title="2011 Audi A4 Angular Front"></a></li>
<li class="small-12 medium-2 large-2 columns photos-widget__sm-photo show-for-medium">
<div class="small-6 medium-12 float-left photos-widget__sm-photo-div">
<a class="vwo-photos-widget-link" href="/cars-trucks/audi/a4/2011/photos-exterior/angular-rear"><img
class="photos-widget__img photos-widget__img--sm "
data-src="https://cars.usnews.com/dims4/USNEWS/fe2022d/2147483647/resize/390x290%3E/format/jpeg/quality/85/?url=https%3A%2F%2Fcars.usnews.com%2Fstatic%2Fimages%2FAuto%2Fizmo%2F326191%2F2011_audi_a4_angularrear.jpg"
alt="2011 Audi A4 Angular Rear" title="2011 Audi A4 Angular Rear"></a>
</div>
<div class="small-6 medium-12 float-left photos-widget__sm-photo-div">
<a class="vwo-photos-widget-link" href="/cars-trucks/audi/a4/2011/photos-interior/dashboard"><img
class="photos-widget__img photos-widget__img--sm "
data-src="https://cars.usnews.com/dims4/USNEWS/c2ffcfc/2147483647/resize/390x290%3E/format/jpeg/quality/85/?url=https%3A%2F%2Fcars.usnews.com%2Fstatic%2Fimages%2FAuto%2Fizmo%2F326191%2F2011_audi_a4_dashboard.jpg"
alt="2011 Audi A4 Dashboard" title="2011 Audi A4 Dashboard"></a>
</div>
</li>
<li class="small-12 medium-4 large-4 columns photos-widget__lg-photo show-for-medium"><a class="vwo-photos-widget-link"
href="/cars-trucks/audi/a4/2011/photos-interior/front-seat"><img
class="photos-widget__img photos-widget__img--lg "
data-src="https://cars.usnews.com/dims4/USNEWS/63dbcd9/2147483647/resize/390x290%3E/format/jpeg/quality/85/?url=https%3A%2F%2Fcars.usnews.com%2Fstatic%2Fimages%2FAuto%2Fizmo%2F326191%2F2011_audi_a4_frontseat.jpg"
alt="2011 Audi A4 Front Seat" title="2011 Audi A4 Front Seat"></a></li>
<li class="small-12 medium-2 large-2 columns photos-widget__sm-photo">
<div class="small-6 medium-12 float-left photos-widget__sm-photo-div">
<a class="photos-widget__overlay vwo-photos-widget-link" href="/cars-trucks/audi/a4/2011/photos-exterior"><img
class="photos-widget__img photos-widget__img--sm "
data-src="https://cars.usnews.com/dims4/USNEWS/d4fd59e/2147483647/resize/390x290%3E/format/jpeg/quality/85/?url=https%3A%2F%2Fcars.usnews.com%2Fstatic%2Fimages%2FAuto%2Fizmo%2F326191%2F2011_audi_a4_sideview.jpg"
alt="2011 Audi A4 Side View" title="2011 Audi A4 Side View"><span class="photos-widget__overlay-text">All Exterior Photos »</span></a>
</div>
<div class="small-6 medium-12 float-left photos-widget__sm-photo-div">
<a class="photos-widget__overlay vwo-photos-widget-link" href="/cars-trucks/audi/a4/2011/photos-interior"><img
class="photos-widget__img photos-widget__img--sm "
data-src="https://cars.usnews.com/dims4/USNEWS/34b8693/2147483647/resize/390x290%3E/format/jpeg/quality/85/?url=https%3A%2F%2Fcars.usnews.com%2Fstatic%2Fimages%2FAuto%2Fizmo%2F326191%2F2011_audi_a4_rearseat.jpg"
alt="2011 Audi A4 Side View" title="2011 Audi A4 Side View"><span class="photos-widget__overlay-text">All Interior Photos »</span></a>
</div>
</li>
</ul>
<a class="vwo-photos-widget-link" href="/cars-trucks/audi/a4/2011/photos-exterior"><span
class="see-more">See All 47 Photos »</span></a>
</article>
</article>
<article class="small-12 columns review">
<h2 class="review--used">2011 Audi A4 Overview</h2>