oxford_learners_dictionaries 0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dcec5b6228467169e3d2f52b5fffd0aff63ab20e
4
- data.tar.gz: 1d81f8988cb9e25309b13549aa16f88911e6f80d
3
+ metadata.gz: 1b8625bb48f583105fc016e244683e3a92275c3c
4
+ data.tar.gz: e8b663e0b1280c7e9bb0e80eac48bf39d014c790
5
5
  SHA512:
6
- metadata.gz: 73fa34fbbfe073fa3a6be88758a5be60226d9f26a9e5798451decdf631f91fbffc66d665222e47a2f9b39dd97c365c5c45994e8c65c0d84e532efe9eb5419802
7
- data.tar.gz: 4a1460f4c6d084b31d2e57d499c6bcf1cdbd31a49d47051c49b89849ca5ad9acf5022a75fb04cfd41222ee01645999a7d9a21b8659e9d451dd68611a005b6ee8
6
+ metadata.gz: 95d9dd946a02bdb59db2ec7f653d539a10021ce27982de2e0a79839e179536b4e66408902b6dba7201d7866c247a00e7b87bda3c62686e11baba8e4aa0009789
7
+ data.tar.gz: 03c7f4d41581fc5794426c3437075625de74441ec6f80ff8041c2e9afdab12c177c851b8bd0120cade5a224db0b556abf54702d73016395205ef0e1870420c6d
data/README.md CHANGED
@@ -5,12 +5,12 @@ OxfordLearnersDictionaries Parser
5
5
 
6
6
  Parser for Oxford Learners Dictionary.
7
7
 
8
- It parses http://www.oxfordlearnersdictionaries.com/ and return the definition(s) of the word you're looking up
8
+ It parses http://www.oxfordlearnersdictionaries.com/ and return the definition(s) of the word you're looking up.
9
9
 
10
10
  ## Features
11
11
 
12
12
  #### v0.1
13
- Classification (verb, noun, adverb, etc) and its definition(s) and word of the day
13
+ Classification (verb, noun, adverb, etc) and its definition(s) and word of the day.
14
14
 
15
15
  #### v0.2
16
16
  ###### WIP
@@ -32,10 +32,11 @@ Please let me know :)
32
32
  Add this line to your application's Gemfile:
33
33
 
34
34
  ```ruby
35
- # gem 'oxford_learners_dictionaries'
36
- # PS. not available through rubygems yet
35
+ # Add to your Gemfile
36
+ gem 'oxford_learners_dictionaries'
37
37
 
38
- Clone it!
38
+ # or install manually
39
+ gem install oxford_learners_dictionaries
39
40
  ```
40
41
 
41
42
  And then execute:
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ task default: :spec
5
5
 
6
6
  desc "Open an irb session preloaded with this library"
7
7
  task :console do
8
- sh "irb -rubygems -I lib -r english.rb"
8
+ sh "irb -rubygems -I lib -r oxford_learners_dictionaries/english.rb"
9
9
  end
10
10
 
11
11
  desc "Run specs"
@@ -13,21 +13,22 @@ module OxfordLearnersDictionaries
13
13
  end
14
14
 
15
15
  def look_up
16
- @page = Nokogiri::HTML(open(@url))
17
- parse
16
+ begin
17
+ @page = Nokogiri::HTML(open(@url))
18
+ @page.css('.idm-gs').remove
19
+ parse
20
+ rescue OpenURI::HTTPError
21
+ nil
22
+ end
18
23
  end
19
24
 
20
25
  private
21
26
  def parse
22
27
  parse_type
23
- unless parse_unique_definition
24
- separators = [".sd-d", ".sd-g", ".d"]
25
- separators.each do |separator|
26
- if @page.css(separator).count > 1
27
- parse_multiple_definitions separator
28
- return self
29
- end
30
- end
28
+ if @page.css('.num').count > 0
29
+ parse_multiple_definitions
30
+ else
31
+ parse_single_definition
31
32
  end
32
33
  self
33
34
  end
@@ -36,30 +37,14 @@ module OxfordLearnersDictionaries
36
37
  @type = @page.css('.pos').first.text
37
38
  end
38
39
 
39
- def parse_unique_definition
40
- if @page.css(".h-g").css(".n-g").to_s.empty? && @page.css(".n-g").count < 1
41
- @definition[:definition_0] = @page.css(".d").text
42
- end
43
- !@definition.empty?
40
+ def parse_single_definition
41
+ definitions = @page.css('.def')
42
+ @definition[:definition_0] = definitions.count > 0 ? definitions[0].text : definitions.text
44
43
  end
45
44
 
46
- def parse_multiple_definitions separator
47
- if separator == ".sd-d" || separator == ".d"
48
- @page.css(separator).each_with_index do |definition, index|
49
- @definition["definition_#{index}".to_sym] = if definition.text.empty?
50
- definition.css(".d").text
51
- else
52
- definition.text
53
- end
54
- end
55
- else
56
- index = 0
57
- @page.css(separator).each do |external_node|
58
- external_node.css(".n-g").each do |definition|
59
- @definition["definition_#{index}".to_sym] = definition.css(".d").text
60
- index += 1
61
- end
62
- end
45
+ def parse_multiple_definitions
46
+ @page.css('.num').count.times do |index|
47
+ @definition["definition_#{index}".to_sym] = @page.css('.def')[index].text
63
48
  end
64
49
  end
65
50
  end
@@ -1,3 +1,3 @@
1
1
  module OxfordLearnersDictionaries
2
- VERSION = "0.1"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -24,6 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.add_development_dependency "simplecov", "~> 0.9.0"
25
25
  spec.add_development_dependency "rspec", "~> 3.0.0"
26
26
  spec.add_development_dependency "webmock", "~> 1.19"
27
+ spec.add_development_dependency "pry", "~> 0.10.1"
27
28
 
28
29
  spec.add_dependency "nokogiri", "~> 1.6.3"
29
30
  end
@@ -1,78 +1,145 @@
1
1
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
2
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3
3
  <head>
4
- <title>car - Definition and pronunciation | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com</title>
4
+ <title>car noun - Definition, pictures, pronunciation and usage notes | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com</title>
5
5
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
- <meta name="description" content="car - Clear definition, audio pronunciation, synonyms and related words, real example sentences, grammar, usage notes and more in Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com - a free online dictionary. Look it up now!" />
7
- <meta name="keywords" content="car, online dictionary, Oxford Advanced Learner&apos;s Dictionary, car definition, define car, definition of car, car pronunciation, pronounce car, car meaning, car examples, car example sentences, car synonyms. car Oxford Advanced Learner&apos;s Dictionary grammar" />
8
-
9
- <link rel="alternate" hreflang="en" href="http://www.oxfordlearnersdictionaries.com/definition/english/car"/>
10
- <link rel="alternate" hreflang="en-US" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
11
- <link rel="alternate" hreflang="en-MX" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
12
- <link rel="alternate" hreflang="en-PH" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
13
- <link rel="alternate" hreflang="en-BR" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
14
- <link rel="alternate" hreflang="en-CO" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car"/>
15
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6
+ <meta name="description" content="Definition of carnoun in Oxford Advanced Learner&apos;s Dictionary. Meaning, pronunciation, picture, example sentences, grammar, usage notes, synonyms and more." />
7
+ <meta name="keywords" content="car noun, online dictionary, Oxford Advanced Learner&apos;s Dictionary, car definition, define car, definition of car, car pronunciation, pronounce car, car meaning, car examples, car synonyms, picture, car grammar" />
8
+
9
+
10
+ <link rel="alternate" hreflang="en" href="http://www.oxfordlearnersdictionaries.com/definition/english/car.html" />
11
+ <link rel="alternate" hreflang="en-US" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car.html" />
12
+ <link rel="alternate" hreflang="en-MX" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car.html" />
13
+ <link rel="alternate" hreflang="en-PH" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car.html" />
14
+ <link rel="alternate" hreflang="en-BR" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car.html" />
15
+ <link rel="alternate" hreflang="en-CO" href="http://www.oxfordlearnersdictionaries.com/us/definition/english/car.html" />
16
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
16
17
  <meta name='viewport' content='width=device-width, initial-scale=1'>
17
- <link href="http://www.oxfordlearnersdictionaries.com/external/styles/interface.css?version=1.1.28" rel="stylesheet" type="text/css" />
18
- <link href="http://www.oxfordlearnersdictionaries.com/external/styles/responsive3columns.css?version=1.1.28" rel="stylesheet" type="text/css" />
19
- <link href="http://www.oxfordlearnersdictionaries.com/external/styles/oxford.css?version=1.1.28" rel="stylesheet" type="text/css" />
20
- <link href="http://www.oxfordlearnersdictionaries.com/external/styles/jquery.lightbox-0.5.css?version=1.1.28" rel="stylesheet" type="text/css" />
21
- <link href="http://www.oxfordlearnersdictionaries.com/external/styles/print.css?version=1.1.28" rel="stylesheet" type="text/css" media="print" />
22
- <script language="javascript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/navigation_menu.js?version=1.1.28"></script>
23
- <script type='text/javascript'>
24
- var googletag = googletag || {};
25
- googletag.cmd = googletag.cmd || [];
26
- (function() {
27
- var gads = document.createElement('script');
28
- gads.async = true;
29
- gads.type = 'text/javascript';
30
- var useSSL = 'https:' == document.location.protocol;
31
- gads.src = (useSSL ? 'https:' : 'http:') +'//www.googletagservices.com/tag/js/gpt.js';
32
- var node = document.getElementsByTagName('script')[0];
33
- node.parentNode.insertBefore(gads, node);
34
- })();
35
-
36
- googletag.cmd.push(function() {
37
- var smartphone = false;
38
- var tablet = false;
39
- var hd = false;
40
- try{
41
- var smartphone = window.matchMedia("(max-width: 761px)").matches;
42
- var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
43
- var hd = window.matchMedia("(min-width: 1220px)").matches;
44
- }catch(err){}
45
- var desktop = (!smartphone && !tablet && !hd);
46
- if (smartphone && false || tablet && true || desktop && true || hd && true)
47
- googletag.defineSlot('/70903302/Entry_728x90', [728, 90], 'dfp_ad_Entry_728x90').addService(googletag.pubads());
48
- if (smartphone && false || tablet && true || desktop && true || hd && true)
49
- googletag.defineSlot('/70903302/Entry_160x600', [160, 600], 'dfp_ad_Entry_160x600').addService(googletag.pubads());
50
- if (smartphone && true || tablet && true || desktop && true || hd && true)
51
- googletag.defineSlot('/70903302/Entry_180x150', [180, 150], 'dfp_ad_Entry_180x150').addService(googletag.pubads());
52
- if (smartphone && true || tablet && false || desktop && false || hd && false)
53
- googletag.defineSlot('/70903302/Entry_320x50', [320, 50], 'dfp_ad_Entry_320x50').addService(googletag.pubads());
54
- if (smartphone && true || tablet && false || desktop && false || hd && false)
55
- googletag.defineSlot('/70903302/Entry_300x250', [300, 250], 'dfp_ad_Entry_300x250').addService(googletag.pubads());
56
- if (smartphone && false || tablet && true || desktop && true || hd && true)
57
- googletag.defineSlot('/70903302/Entry_Btm_300x250', [300, 250], 'dfp_ad_Entry_Btm_300x250').addService(googletag.pubads());
58
- googletag.pubads().enableSingleRequest();
59
- googletag.enableServices();
60
- });
61
- </script>
18
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/interface.css?version=1.4.0" rel="stylesheet" type="text/css" />
19
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/responsive.css?version=1.4.0" rel="stylesheet" type="text/css" />
20
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/oxford.css?version=1.4.0" rel="stylesheet" type="text/css" />
21
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/jquery.lightbox-0.5.css?version=1.4.0" rel="stylesheet" type="text/css" />
22
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/print.css?version=1.4.0" rel="stylesheet" type="text/css" media="print" />
23
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/autocomplete.css?version=1.4.0" rel="stylesheet" type="text/css" />
24
+ <script type='text/javascript'>
25
+ var googletag = googletag || {};
26
+ googletag.cmd = googletag.cmd || [];
27
+ var dfpSlots = {};
28
+ (function() {
29
+ var gads = document.createElement('script');
30
+ gads.async = true;
31
+ gads.type = 'text/javascript';
32
+ var useSSL = 'https:' == document.location.protocol;
33
+ gads.src = (useSSL ? 'https:' : 'http:') +'//www.googletagservices.com/tag/js/gpt.js';
34
+ var node = document.getElementsByTagName('script')[0];
35
+ node.parentNode.insertBefore(gads, node);
36
+ })();
37
+ googletag.cmd.push(function() {
38
+ var mapping_topslot_a = googletag.sizeMapping()
39
+
40
+ .addSize([1203, 0], [1, 1]) // hd (CSS min-width: 1220)
41
+ .addSize([745, 0], [728, 90]) // tablet (CSS min-width: 762)
42
+ .addSize([0, 0], [320, 50]) // mobile
43
+ .build();
44
+ dfpSlots["topslot_a"] = googletag.defineSlot('/70903302/topslot', [728, 90], 'ad_topslot_a')
45
+ .defineSizeMapping(mapping_topslot_a)
46
+ .setTargeting('old_vp', 'top')
47
+ .setTargeting('old_hp', 'center')
48
+ .addService(googletag.pubads());
49
+ var mapping_topslot_b = googletag.sizeMapping()
50
+
51
+ .addSize([1203, 0], [728, 90]) // hd (CSS min-width: 1220)
52
+ .addSize([0, 0], [1, 1]) // mobile
53
+ .build();
54
+ dfpSlots["topslot_b"] = googletag.defineSlot('/70903302/topslot', [1, 1], 'ad_topslot_b')
55
+ .defineSizeMapping(mapping_topslot_b)
56
+ .setTargeting('old_vp', 'top')
57
+ .setTargeting('old_hp', 'center')
58
+ .addService(googletag.pubads());
59
+ var mapping_btmslot_a = googletag.sizeMapping()
60
+
61
+ .addSize([745, 0], [300, 250]) // tablet (CSS min-width: 762)
62
+ .addSize([0, 0], [1, 1]) // mobile
63
+ .build();
64
+ dfpSlots["btmslot_a"] = googletag.defineSlot('/70903302/btmslot', [300, 250], 'ad_btmslot_a')
65
+ .defineSizeMapping(mapping_btmslot_a)
66
+ .setTargeting('old_vp', 'btm')
67
+ .setTargeting('old_hp', 'center')
68
+ .addService(googletag.pubads());
69
+ var mapping_btmslot_b = googletag.sizeMapping()
70
+
71
+ .addSize([745, 0], [1, 1]) // tablet (CSS min-width: 762)
72
+ .addSize([0, 0], [300, 250]) // mobile
73
+ .build();
74
+ dfpSlots["btmslot_b"] = googletag.defineSlot('/70903302/btmslot', [1, 1], 'ad_btmslot_b')
75
+ .defineSizeMapping(mapping_btmslot_b)
76
+ .setTargeting('old_vp', 'btm')
77
+ .setTargeting('old_hp', 'center')
78
+ .addService(googletag.pubads());
79
+ var mapping_houseslot1_a = googletag.sizeMapping()
80
+
81
+ .addSize([0, 0], [180, 150]) // mobile
82
+ .build();
83
+ dfpSlots["houseslot1_a"] = googletag.defineSlot('/70903302/houseslot1', [180, 150], 'ad_houseslot1_a')
84
+ .defineSizeMapping(mapping_houseslot1_a)
85
+ .setTargeting('old_vp', 'btm')
86
+ .setTargeting('old_hp', 'right')
87
+ .addService(googletag.pubads());
88
+ var mapping_leftslot_a = googletag.sizeMapping()
89
+
90
+ .addSize([745, 0], [160, 600]) // tablet (CSS min-width: 762)
91
+ .addSize([0, 0], [1, 1]) // mobile
92
+ .build();
93
+ dfpSlots["leftslot_a"] = googletag.defineSlot('/70903302/leftslot', [160, 600], 'ad_leftslot_a')
94
+ .defineSizeMapping(mapping_leftslot_a)
95
+ .setTargeting('old_vp', 'top')
96
+ .setTargeting('old_hp', 'left')
97
+ .addService(googletag.pubads());
98
+ googletag.pubads().setTargeting("old_l", "en");
99
+ googletag.pubads().setTargeting("old_pr", "free");
100
+ googletag.pubads().setTargeting("old_pc", "dictionary");
101
+ googletag.pubads().setTargeting("old_dc", "english");
102
+ googletag.pubads().setTargeting("old_ei", "car");
103
+
104
+ googletag.pubads().enableSingleRequest();
105
+ googletag.pubads().collapseEmptyDivs(false);
106
+ googletag.enableServices();
107
+ });
108
+ function getDeviceByResolution() {
109
+ var res = null;
110
+ if (window.matchMedia("(max-width: 761px)").matches)
111
+ res = "mobile";
112
+ else if (window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches)
113
+ res = "tablet";
114
+ else if (window.matchMedia("(min-width: 1220px)").matches)
115
+ res = "hd";
116
+ else
117
+ res = "desktop";
118
+ return res;
119
+ }
120
+ var curResolution = getDeviceByResolution();
121
+ window.onresize = function() {
122
+ var newResolution = getDeviceByResolution();
123
+ if (newResolution != curResolution) {
124
+ curResolution = newResolution;
125
+ googletag.pubads().refresh();
126
+ }
127
+ };
128
+ </script>
62
129
  <!--[if gte IE 7 ]>
63
- <link href="http://www.oxfordlearnersdictionaries.com/external/styles/oxford-ie.css?version=1.1.28" rel="stylesheet" type="text/css" />
130
+ <link href="http://www.oxfordlearnersdictionaries.com/external/styles/oxford-ie.css?version=1.4.0" rel="stylesheet" type="text/css" />
64
131
  <![endif]-->
65
- <!--[if IE 9]><script type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/matchMedia.js?version=1.1.28"></script><![endif]-->
66
- <link rel="icon" type="image/x-icon" href="http://www.oxfordlearnersdictionaries.com/external/images/favicon.ico?version=1.1.28"/>
132
+ <!--[if IE 9]><script type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/matchMedia.js?version=1.4.0"></script><![endif]-->
133
+ <link rel="icon" type="image/x-icon" href="http://www.oxfordlearnersdictionaries.com/external/images/favicon.ico?version=1.4.0"/>
134
+ <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/common.js?version=1.4.0"></script>
67
135
  </head>
68
- <body>
69
- <noscript>
136
+ <body >
137
+ <noscript>
70
138
  <div id="cookieLaw">We use cookies to enhance your experience on our website. By continuing to use our website, you are agreeing to our use of cookies. You can change your cookie settings at any time. <a href='http://global.oup.com/cookiepolicy/?siteid=oaadonline' target='_blank'>Find out more</a></div>
71
139
  </noscript>
72
140
  <div id="ox-container">
73
141
 
74
142
 
75
-
76
143
 
77
144
 
78
145
 
@@ -96,105 +163,116 @@
96
163
 
97
164
 
98
165
 
99
- <div id="ox-header">
100
- <div class="responsive_row top">
101
- <div class="nav" style="float:left;">
102
- <a href="http://www.oxfordlearnersdictionaries.com/">Home</a>
103
- </div>
104
- <div class="nav">
105
- <div class="menu responsive_hide_on_smartphone">
106
- <ul>
107
- <li></li>
108
- <li><a href="http://www.oxfordlearnersdictionaries.com/wordlist/">Wordlists</a></li>
109
- <li><a href="http://www.oxfordlearnersdictionaries.com/about/">About</a></li>
110
- </ul>
111
- </div>
112
- <div class="responsive_display_on_smartphone">
113
- <a id="toggleMenu" class="toggleMenuBg" href="#" onclick="displayMenu('navMenu')">
114
- </a>
115
- </div>
116
- </div>
117
- </div>
118
- <nav id="navMenu" style="display:none;">
119
- <div class="navMenuLeft"><div class="navMenuContainer"><a href="http://www.oxfordlearnersdictionaries.com/wordlist/"><b>Wordlists</b></a></div></div>
120
- <div class="navMenuRight"><div class="navMenuContainer"><a href="http://www.oxfordlearnersdictionaries.com/about/"><b>About</b></a></div></div>
121
-
122
-
123
- </nav>
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+ <div id="ox-header" class="">
175
+ <div class="responsive_row flush-below top">
176
+ <div class="responsive_container responsive_display_on_smartphone">
177
+ <div class="menu_button"></div>
178
+ </div>
179
+ <div class="nav responsive_container main_nav">
180
+ <ul class="menu">
181
+ <li><a href="http://www.oxfordlearnersdictionaries.com/">Home</a></li>
182
+ <li><a href="http://www.oxfordlearnersdictionaries.com/topic/">Topics</a></li>
183
+ <li><a href="http://www.oxfordlearnersdictionaries.com/wordlist/">Wordlists</a></li>
184
+ <li><a href="http://www.oxfordlearnersdictionaries.com/mywordlist/">My Wordlists</a></li>
185
+ <li><a href="http://www.oxfordlearnersdictionaries.com/about/">About</a></li>
186
+ <li><a href="http://www.oxfordlearnersdictionaries.com/faq/">FAQ</a></li>
187
+ </ul>
188
+
189
+ <div class="menu login-circle ">
190
+ <ul>
191
+ <li><a href="http://www.oxfordlearnersdictionaries.com/account/login">Log in or Get Premium</a></li>
192
+ </ul>
193
+ </div>
194
+ </div>
195
+ <a class='go-to-top responsive_display_on_smartphone' href='#wrap' title='back to top'>Back to Top</a>
124
196
  </div>
125
- <div class="responsive_container">
126
- <div class="responsive_row"><div class="old-logo-title"></div></div>
127
- <div class="responsive_mainsearch_center">
128
- <div class="mainsearch responsive_row">
129
- <form id="search-form" method="get" action="http://www.oxfordlearnersdictionaries.com/search/english/direct/" onsubmit="return checkSearch('Type here');">
130
- <div class="dictionarySelector"> <select id="dictionary-selector">
197
+ <div class="responsive_container ">
198
+ <div class="old-logo-title responsive_hide_on_smartphone"></div>
199
+ <div class="responsive_display_on_smartphone"><a class="old-logo-title" href="http://www.oxfordlearnersdictionaries.com/"></a></div>
200
+ <div class="mainsearch responsive_row">
201
+ <form id="search-form" method="get" action="http://www.oxfordlearnersdictionaries.com/search/english/direct/" onsubmit="return checkSearch('Type here');">
202
+ <div class="dictionarySelector"> <select id="dictionary-selector">
131
203
  <option value="english" selected="selected">English</option>
132
204
  <option value="american_english" >American English</option>
133
205
  </select>
134
206
  </div>
135
- <input type="text" id="q" name="q"
136
- value="Type here" class="searchfield"
137
- onfocus="this.value=(this.value=='Type here') ? changeText('', this) : this.value;"
138
- onblur="this.value=(this.value=='') ? changeText('Type here', this) : this.value;" />
139
- <input type="submit" id="search-btn" value="" />
140
- </form>
141
- </div>
142
- </div>
143
- <div class="responsive_row" id="leaderboardOthers">
144
-
145
-
146
- <div class='responsive_align_left_on_smartphone responsive_hide_on_tablet responsive_hide_on_desktop responsive_hide_on_hd'>
147
- <div id='dfp_ad_Entry_320x50' style='width:320px; height:50px;'>
148
- <script type='text/javascript'>
149
- var smartphone = false;
150
- var tablet = false;
151
- var hd = false;
152
- try{
153
- var smartphone = window.matchMedia("(max-width: 761px)").matches;
154
- var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
155
- var hd = window.matchMedia("(min-width: 1220px)").matches;
156
- }catch(err){}
157
- var desktop = (!smartphone && !tablet && !hd);
158
- if (smartphone && true || tablet && false || desktop && false || hd && false)
159
- googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_320x50'); });
160
- </script>
161
- </div>
207
+ <input type="text" id="q" name="q"
208
+ value="Type here" class="searchfield"
209
+ onfocus="this.value=(this.value=='Type here') ? changeText('', this) : this.value;"
210
+ onblur="this.value=(this.value=='') ? changeText('Type here', this) : this.value;" />
211
+ <div class="inputSuggestions" style=""></div>
212
+ <input type="submit" id="search-btn" value="" />
213
+ </form>
214
+ </div>
162
215
 
163
- </div>
164
- </div>
216
+
217
+ <div class="responsive_hide_on_hd responsive_center_on_smartphone" id="leaderboardOthers">
218
+ <div id='ad_topslot_a' class='am-default'>
219
+ <script type='text/javascript'>
220
+ googletag.cmd.push(function() { googletag.display('ad_topslot_a'); });
221
+ </script>
222
+ </div>
223
+ </div>
165
224
  <div class="responsive_row">
166
- <div class="responsive_cell_left">
167
-
168
-
169
- <div class=' responsive_hide_on_smartphone'>
170
- <div id='dfp_ad_Entry_160x600' style='width:160px; height:600px;'>
171
- <script type='text/javascript'>
172
- var smartphone = false;
173
- var tablet = false;
174
- var hd = false;
175
- try{
176
- var smartphone = window.matchMedia("(max-width: 761px)").matches;
177
- var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
178
- var hd = window.matchMedia("(min-width: 1220px)").matches;
179
- }catch(err){}
180
- var desktop = (!smartphone && !tablet && !hd);
181
- if (smartphone && false || tablet && true || desktop && true || hd && true)
182
- googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_160x600'); });
225
+ <div class="responsive_entry_left">
226
+ <div id='ad_leftslot_a' class='am-default'>
227
+ <script type='text/javascript'>
228
+ googletag.cmd.push(function() { googletag.display('ad_leftslot_a'); });
183
229
  </script>
184
- </div>
185
-
186
- </div>
230
+ </div>
231
+ </div>
232
+
233
+ <div class="responsive_entry_center">
234
+ <div class="responsive_display_on_hd" id="leaderboardHD">
235
+ <div id='ad_topslot_b' class='am-default'>
236
+ <script type='text/javascript'>
237
+ googletag.cmd.push(function() { googletag.display('ad_topslot_b'); });
238
+ </script>
239
+ </div>
240
+ </div>
241
+ <div class="responsive_entry_center_wrap">
242
+
243
+ <div class="entry-header">
244
+ <div class="responsive_entry_center_left">
245
+ <p class="definition-title">Definition of <em>car noun</em> from the Oxford Advanced Learner&apos;s Dictionary</p>
246
+ </div>
247
+ <div class="responsive_entry_center_right responsive_hide_on_smartphone share-this-entry"> <div class="social-wrap">
248
+ <span id="plusone-box"><g:plusone size="normal" href="http://www.oxfordlearnersdictionaries.com/definition/english/car.html" count="false"></g:plusone></span>
249
+ <a href="http://www.facebook.com/sharer.php?u=http://www.oxfordlearnersdictionaries.com/definition/english/car.html&t=car noun - Definition, pictures, pronunciation and usage notes | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com" target="_blank" class="facebook-btn" alt="share this entry on Facebook" title="share this entry on Facebook" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'facebook', 'http://www.oxfordlearnersdictionaries.com/definition/english/car.html', null, true]);"></a>
250
+ <a href="http://twitter.com/home?status=Add+This:+http://www.oxfordlearnersdictionaries.com/definition/english/car.html" target="_blank" class="twitter-btn" alt="tweet this entry" title="tweet this entry" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'twitter', 'http://www.oxfordlearnersdictionaries.com/definition/english/car.html', null, true]);"></a>
251
+ <a href="http://www.stumbleupon.com/submit?url=http://www.oxfordlearnersdictionaries.com/definition/english/car.html" target="_blank" class="stumbleupon-btn" alt="share this entry on StumbleUpon" title="share this entry on StumbleUpon" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'stumbleupon', 'http://www.oxfordlearnersdictionaries.com/definition/english/car.html', null, true]);"></a>
252
+ <a href="http://www.diigo.com/post?url=http://www.oxfordlearnersdictionaries.com/definition/english/car.html" target="_blank" class="diigo-btn" alt="share this entry on Diigo" title="share this entry on Diigo" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'diigo', 'http://www.oxfordlearnersdictionaries.com/definition/english/car.html', null, true]);"></a>
253
+ <a href="mailto:?subject=car noun - Definition, pictures, pronunciation and usage notes | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com&body=http://www.oxfordlearnersdictionaries.com/definition/english/car.html" alt="email this entry" title="email this entry" class="email-btn"></a>
254
+ </div>
255
+ </div>
187
256
  </div>
188
-
189
- <div class="responsive_cell_center">
190
- <div class="responsive_row" id="leaderboardHD">
191
- </div>
192
- <div id="ox-wrapper">
193
- <div id="main_column" class="responsive_row">
194
- <div id="main-container" class="main-container">
195
-
257
+
258
+ <div id="ox-wrapper" class="responsive_entry_center_left">
259
+ <div id="main_column" class="responsive_row">
260
+ <div id="main-container" class="main-container">
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
196
275
 
197
-
198
276
 
199
277
 
200
278
 
@@ -218,220 +296,320 @@
218
296
 
219
297
 
220
298
  <script language="javascript" type="text/javascript">
221
- var contextId=null;
222
- // global variable that contains the path to external files
223
- // and used by the lighbox script
224
- var lightboxImageLoading = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-ico-loading.gif?version=1.1.28";
225
- var lightboxImageBtnPrev = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-btn-prev.gif?version=1.1.28";
226
- var lightboxImageBtnNext = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-btn-next.gif?version=1.1.28";
227
- var lightboxImageBtnClose = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-btn-close.gif?version=1.1.28";
228
- var lightboxImageBlank = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-blank.gif?version=1.1.28";
299
+ var contextId= (location.hash != "" ? location.hash : null);
300
+ // global variable that contains the path to external files
301
+ // and used by the lightbox script
302
+ var lightboxImageLoading = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-ico-loading.gif?version=1.4.0";
303
+ var lightboxImageBtnPrev = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-btn-prev.gif?version=1.4.0";
304
+ var lightboxImageBtnNext = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-btn-next.gif?version=1.4.0";
305
+ var lightboxImageBtnClose = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-btn-close.gif?version=1.4.0";
306
+ var lightboxImageBlank = "http://www.oxfordlearnersdictionaries.com/external/images/lightbox-blank.gif?version=1.4.0";
307
+ $(document).ready(function () {
308
+ initEntry('See more', 'See less');
309
+ });
229
310
  </script>
230
- <div>
231
- <div class="share-this-entry">
232
- <span id="plusone-box"><g:plusone size="normal" href="http://www.oxfordlearnersdictionaries.com/definition/english/car" count="false"></g:plusone></span>
233
- <a href="http://www.facebook.com/sharer.php?u=http://www.oxfordlearnersdictionaries.com/definition/english/car&t=car - Definition and pronunciation | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com" target="_blank" class="facebook-btn" alt="share this entry on Facebook" title="share this entry on Facebook" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'facebook', 'http://www.oxfordlearnersdictionaries.com/definition/english/car', null, true]);"></a>
234
- <a href="http://twitter.com/home?status=Add+This:+http://www.oxfordlearnersdictionaries.com/definition/english/car" target="_blank" class="twitter-btn" alt="tweet this entry" title="tweet this entry" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'twitter', 'http://www.oxfordlearnersdictionaries.com/definition/english/car', null, true]);"></a>
235
- <a href="http://www.stumbleupon.com/submit?url=http://www.oxfordlearnersdictionaries.com/definition/english/car" target="_blank" class="stumbleupon-btn" alt="share this entry on StumbleUpon" title="share this entry on StumbleUpon" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'stumbleupon', 'http://www.oxfordlearnersdictionaries.com/definition/english/car', null, true]);"></a>
236
- <a href="http://www.diigo.com/post?url=http://www.oxfordlearnersdictionaries.com/definition/english/car" target="_blank" class="diigo-btn" alt="share this entry on Diigo" title="share this entry on Diigo" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'diigo', 'http://www.oxfordlearnersdictionaries.com/definition/english/car', null, true]);"></a>
237
- <a href="mailto:?subject=car - Definition and pronunciation | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com&body=http://www.oxfordlearnersdictionaries.com/definition/english/car" alt="email this entry" title="email this entry" class="email-btn"></a>
238
- </div>
311
+
312
+ <div id="entryContent"><div xmlns="http://www.w3.org/1999/xhtml" class="entry" id="car"><ol class="h-g" id="car__1"><div class="top-container"><div class="top-g" id="car__2">
313
+ <div class="webtop-g">
314
+ <a class="oxford3000" href="http://www.oxfordlearnersdictionaries.com/wordlist/english/oxford3000/"> </a><span class="z"> </span><h2 class="h">car</h2><span class="z"> </span><span class="pos">noun</span><!-- End of DIV webtop-g--></div><span class="pos-g" id="car__8"><span class="pos" id="car__9">noun</span></span><div class="pron-gs ei-g" eid="car__10" psg="ald8_car_prongs_1" resource="phonetics" source="ald8"><span class="pron-g" id="car__11" geo="br" trans="ald8"><span class="prefix">BrE</span> <span class="phon" eid="car__12"><span class="bre">BrE</span><span class="separator">/</span><span class="wrap">/</span>kɑː(r)<span class="wrap">/</span><span class="separator">/</span></span><div class="sound audio_play_button pron-uk icon-audio" data-src-mp3="http://www.oxfordlearnersdictionaries.com/media/english/uk_pron/c/car/car__/car__gb_1.mp3" data-src-ogg="http://www.oxfordlearnersdictionaries.com/media/english/uk_pron_ogg/c/car/car__/car__gb_1.ogg" title=" pronunciation English" style="cursor: pointer" valign="top"> <!-- End of DIV sound audio_play_button pron-uk icon-audio--></div></span><span class="sep">;</span> <span class="pron-g" id="car__13" geo="n_am" trans="ald8"><span class="prefix">NAmE</span> <span class="phon" eid="car__14"><span class="name">NAmE</span><span class="separator">/</span><span class="wrap">/</span>kɑːr<span class="wrap">/</span><span class="separator">/</span></span><div class="sound audio_play_button pron-us icon-audio" data-src-mp3="http://www.oxfordlearnersdictionaries.com/media/english/us_pron/c/car/car__/car__us_1.mp3" data-src-ogg="http://www.oxfordlearnersdictionaries.com/media/english/us_pron_ogg/c/car/car__/car__us_1.ogg" title=" pronunciation American" style="cursor: pointer" valign="top"> <!-- End of DIV sound audio_play_button pron-us icon-audio--></div></span><!-- End of DIV pron-gs ei-g--></div><span class="res-g" hide="y" psg="top_topics"> <span class="xr-gs"><a class="Ref" href="http://www.oxfordlearnersdictionaries.com/topic/trains/car_1" title="Topic Trains"><span class="xr-g" resource="topicdict"><span class="xh">Trains</span></span></a><span class="sep">,</span> <a class="Ref" href="http://www.oxfordlearnersdictionaries.com/topic/types_of_vehicle/car_2" title="Topic Types of vehicle"><span class="xr-g" resource="topicdict"><span class="xh">Types of vehicle</span></span></a></span></span><div class="clear"> <!-- End of DIV clear--></div>
315
+ <div class="btn icon-left-colapse wl-add"><a id="add-to-mywordlist-link" href="http://www.oxfordlearnersdictionaries.com/mywordlist/">Add to my wordlist</a><!-- End of DIV btn icon-left-colapse wl-add--></div><a class="responsive_display_inline_on_smartphone link-right" href="#relatedentries">jump to other results</a><br/><!-- End of DIV top-g--></div><!-- End of DIV top-container--></div><span class="sn-gs" id="car__15"><li class="sn-g" id="car__16" ox3000="y"><div id="ox-enlarge"><a class="topic" title="" href="http://www.oxfordlearnersdictionaries.com/media/english/fullsize/c/car/car_d/car_dashboard.jpg"><img class="thumb" border="1" alt="" title="" src="http://www.oxfordlearnersdictionaries.com/media/english/thumb/c/car/car_d/car_dashboard.jpg"/><span class="ox-enlarge-label">enlarge image</span></a><!-- End of DIV --></div><span class="num">1 </span><span class="sym_first">
316
+ <a class="oxford3000" href="http://www.oxfordlearnersdictionaries.com/wordlist/english/oxford3000/"> </a></span><span class="v-gs" id="car__17" type="vf"><span class="wrap">(</span><span class="v-g" id="car__18"><span class="label-g" id="car__19"><span class="reg" reg="fml" id="car__20">formal</span></span> <span class="v"><strong>ˈmotor car</strong></span><span class="label-g" id="car__22"><span class="geo" id="car__23" geo="br">especially in British English</span></span></span><span class="wrap">)</span></span> <span class="v-gs" id="car__24" type="vf"><span class="wrap">(</span><span class="v-g" id="car__25"><span class="label-g" id="car__26"><span class="geo" id="car__27" geo="n_am">also North American English</span><span class="sep">,</span> <span class="reg" reg="fml" id="car__28">formal</span></span> <span class="v"><strong>automobile</strong></span></span><span class="wrap">)</span></span> <span class="def" id="car__30">a road vehicle with an engine and four wheels that can carry a small number of passengers</span><span class="x-gs" id="car__31"><span class="x-g" id="car__32"> <span class="rx-g" id="car__33" resource="recx" source="ald9"><span class="x" id="car__34">Paula got into the car and drove off.</span></span></span><span class="x-g" id="car__37"> <span class="rx-g" id="car__38" resource="recx" source="ald9"><span class="x" id="car__39">‘How did you come?’ ‘<span class="cl"><strong>By car</strong></span>.’</span></span></span><span class="x-g" id="car__43"> <span class="rx-g" id="car__44" resource="recx" source="ald9"><span class="x" id="car__45">Are you going <span class="cl"><strong>in the car</strong></span>?</span></span></span><span class="x-g" id="car__49"> <span class="x" id="car__50">a <span class="cl"><strong>car driver/manufacturer/dealer</strong></span></span></span><span class="x-g" id="car__52"> <span class="x" id="car__53">a <span class="cl"><strong>car accident/crash</strong></span></span></span><span class="x-g" id="car__55"> <span class="rx-g" id="car__56" resource="recx" source="ald9"><span class="x" id="car__57">Where can I park the car?</span></span></span></span><span class="collapse" title="Collocations"><span class="unbox" id="car__60" unbox="colloc"> <span class="heading">Collocations</span><span class="body" id="car__61"><span class="h1" id="car__62">Driving</span><span class="h2" id="car__63">Having a car</span><span class="bullet" id="car__64"><span class="li" id="car__65"> <span class="eb" id="car__66">have/own/</span><span class="label-g" id="car__67"><span class="wrap">(</span><span class="geo" id="car__68" geo="br">British English</span><span class="wrap">)</span></span> <span class="eb" id="car__69">run</span> a car</span><span class="li" id="car__70"> <span class="eb" id="car__71">ride</span> a motorcycle/motorbike</span><span class="li" id="car__72"> <span class="eb" id="car__73">drive/prefer/use</span> an automatic/a manual/<span class="label-g" id="car__74"><span class="wrap">(</span><span class="geo" id="car__75" geo="n_am">North American English</span><span class="sep">,</span> <span class="reg" id="car__76" reg="infml">informal</span><span class="wrap">)</span></span> a stick shift</span><span class="li" id="car__77"> <span class="eb" id="car__78">have/get</span> your car <span class="eb" id="car__79">serviced/fixed/repaired</span></span><span class="li" id="car__80"> <span class="eb" id="car__81">buy/sell</span> a used car/<span class="label-g" id="car__82"><span class="wrap">(</span><span class="geo" id="car__83" geo="br">especially British English</span><span class="wrap">)</span></span> a second-hand car</span><span class="li" id="car__84"> <span class="eb" id="car__85">take/pass/fail</span> a <span class="label-g" id="car__86"><span class="wrap">(</span><span class="geo" id="car__87" geo="br">British English</span><span class="wrap">)</span></span> driving test/<span class="label-g" id="car__88"><span class="wrap">(</span><span class="geo" id="car__89" geo="n_am">both North American English</span><span class="wrap">)</span></span> driver’s test/road test</span><span class="li" id="car__90"> <span class="eb" id="car__91">get/obtain/have/lose/carry</span> a/your <span class="label-g" id="car__92"><span class="wrap">(</span><span class="geo" id="car__93" geo="br">British English</span><span class="wrap">)</span></span> driving licence/<span class="label-g" id="car__94"><span class="wrap">(</span><span class="geo" id="car__95" geo="n_am">North American English</span><span class="wrap">)</span></span> driver’s license</span></span><span class="h2" id="car__96">Driving</span><span class="bullet" id="car__97"><span class="li" id="car__98"> <span class="eb" id="car__99">put on/fasten/</span><span class="label-g" id="car__100"><span class="wrap">(</span><span class="geo" id="car__101" geo="n_am">North American English</span><span class="wrap">)</span></span> <span class="eb" id="car__102">buckle/wear/undo</span> your seat belt/safety belt</span><span class="li" id="car__103"> <span class="eb" id="car__104">put/turn/leave</span> the key in the ignition</span><span class="li" id="car__105"> <span class="eb" id="car__106">start</span> the car/engine</span><span class="li" id="car__107"> <span class="label-g" id="car__108"><span class="wrap">(</span><span class="geo" id="car__109" geo="br">British English</span><span class="wrap">)</span></span> <span class="eb" id="car__110">change/</span><span class="label-g" id="car__111"><span class="wrap">(</span><span class="geo" id="car__112" geo="n_am">North American English</span><span class="wrap">)</span></span> <span class="eb" id="car__113">shift/put something into</span> gear</span><span class="li" id="car__114"> <span class="eb" id="car__115">press/put your foot on</span> the brake pedal/clutch/accelerator</span><span class="li" id="car__116"> <span class="eb" id="car__117">release</span> the clutch/<span class="label-g" id="car__118"><span class="wrap">(</span><span class="geo" id="car__119" geo="br">especially British English</span><span class="wrap">)</span></span> the handbrake/<span class="label-g" id="car__120"><span class="wrap">(</span><span class="geo" id="car__121" geo="n_am">both North American English</span><span class="wrap">)</span></span> the emergency brake/the parking brake</span><span class="li" id="car__122"> <span class="eb" id="car__123">drive/park/reverse</span> the car</span><span class="li" id="car__124"> <span class="label-g" id="car__125"><span class="wrap">(</span><span class="geo" id="car__126" geo="br">British English</span><span class="wrap">)</span></span> <span class="eb" id="car__127">indicate</span> left/right</span><span class="li" id="car__128"> <span class="label-g" id="car__129"><span class="wrap">(</span><span class="geo" id="car__130" geo="n_am">especially North American English</span><span class="wrap">)</span></span> <span class="eb" id="car__131">signal</span> that you are turning left/right</span><span class="li" id="car__132"> <span class="eb" id="car__133">take/miss</span> <span class="label-g" id="car__134"><span class="wrap">(</span><span class="geo" id="car__135" geo="br">British English</span><span class="wrap">)</span></span> the turning/<span class="label-g" id="car__136"><span class="wrap">(</span><span class="geo" id="car__137" geo="n_am">especially North American English</span><span class="wrap">)</span></span> the turn</span><span class="li" id="car__138"> <span class="eb" id="car__139">apply/hit/slam on</span> the brake(s)</span><span class="li" id="car__140"> <span class="eb" id="car__141">beep/honk/</span><span class="label-g" id="car__142"><span class="wrap">(</span><span class="geo" id="car__143" geo="br">especially British English</span><span class="wrap">)</span></span> <span class="eb" id="car__144">toot/</span><span class="label-g" id="car__145"><span class="wrap">(</span><span class="geo" id="car__146" geo="br">British English</span><span class="wrap">)</span></span> <span class="eb" id="car__147">sound</span> your horn</span></span><span class="h2" id="car__148">Problems and accidents</span><span class="bullet" id="car__149"><span class="li" id="car__150"> a car <span class="eb" id="car__151">skids/crashes (into something)/collides (with something)</span></span><span class="li" id="car__152"> <span class="eb" id="car__153">swerve to avoid</span> an oncoming car/a pedestrian</span><span class="li" id="car__154"> <span class="eb" id="car__155">crash/lose control of</span> the car</span><span class="li" id="car__156"> <span class="eb" id="car__157">have/be in/be killed in/survive</span> a car crash/a car accident/<span class="label-g" id="car__158"><span class="wrap">(</span><span class="geo" id="car__159" geo="n_am">North American English</span><span class="wrap">)</span></span> a car wreck/a hit-and-run</span><span class="li" id="car__160"> <span class="eb" id="car__161">be run over/knocked down by</span> a car/bus/truck</span><span class="li" id="car__162"> <span class="eb" id="car__163">dent/hit</span> <span class="label-g" id="car__164"><span class="wrap">(</span><span class="geo" id="car__165" geo="br">British English</span><span class="wrap">)</span></span> the bonnet/<span class="label-g" id="car__166"><span class="wrap">(</span><span class="geo" id="car__167" geo="n_am">North American English</span><span class="wrap">)</span></span> the hood</span><span class="li" id="car__168"> <span class="eb" id="car__169">break/crack/shatter</span> <span class="label-g" id="car__170"><span class="wrap">(</span><span class="geo" id="car__171" geo="br">British English</span><span class="wrap">)</span></span> the windscreen/<span class="label-g" id="car__172"><span class="wrap">(</span><span class="geo" id="car__173" geo="n_am">North American English</span><span class="wrap">)</span></span> the windshield</span><span class="li" id="car__174"> <span class="eb" id="car__175">blow/</span><span class="label-g" id="car__176"><span class="wrap">(</span><span class="geo" id="car__177" geo="br">especially British English</span><span class="wrap">)</span></span> <span class="eb" id="car__178">burst/puncture</span> <span class="label-g" id="car__179"><span class="wrap">(</span><span class="geo" id="car__180" geo="br">British English</span><span class="wrap">)</span></span> a tyre/<span class="label-g" id="car__181"><span class="wrap">(</span><span class="geo" id="car__182" geo="n_am">North American English</span><span class="wrap">)</span></span> a tire</span><span class="li" id="car__183"> <span class="eb" id="car__184">get/have</span> <span class="label-g" id="car__185"><span class="wrap">(</span><span class="geo" id="car__186" geo="br">British English</span><span class="wrap">)</span></span> a flat tyre/a flat tire/a puncture</span><span class="li" id="car__187"> <span class="eb" id="car__188">inflate/change/fit/replace/check</span> a tyre/tire </span></span><span class="h2" id="car__189">Traffic and driving regulations</span><span class="bullet" id="car__190"><span class="li" id="car__191"> <span class="eb" id="car__192">be caught in/get stuck in/sit in</span> a traffic jam</span><span class="li" id="car__193"> <span class="eb" id="car__194">cause</span> congestion/tailbacks/traffic jams/gridlock</span><span class="li" id="car__195"> <span class="eb" id="car__196">experience/face</span> lengthy delays</span><span class="li" id="car__197"> <span class="eb" id="car__198">beat/avoid</span> the traffic/the rush hour</span><span class="li" id="car__199"> <span class="eb" id="car__200">break/observe/</span><span class="label-g" id="car__201"><span class="wrap">(</span><span class="geo" id="car__202" geo="n_am">North American English</span><span class="wrap">)</span></span> <span class="eb" id="car__203">drive</span> the speed limit</span><span class="li" id="car__204"> <span class="eb" id="car__205">be caught on</span> <span class="label-g" id="car__206"><span class="wrap">(</span><span class="geo" id="car__207" geo="br">British English</span><span class="wrap">)</span></span> a speed camera</span><span class="li" id="car__208"> <span class="eb" id="car__209">stop somebody for/pull somebody over for/</span><span class="label-g" id="car__210"><span class="wrap">(</span><span class="geo" id="car__211" geo="br">British English</span><span class="sep">,</span> <span class="reg" id="car__212" reg="infml">informal</span><span class="wrap">)</span></span> <span class="eb" id="car__213">be done for</span> speeding</span><span class="li" id="car__214"> <span class="label-g" id="car__215"><span class="wrap">(</span><span class="reg" id="car__216" reg="infml">both informal</span><span class="wrap">)</span></span> <span class="eb" id="car__217">run/</span><span class="label-g" id="car__218"><span class="wrap">(</span><span class="geo" id="car__219" geo="br">British English</span><span class="wrap">)</span></span> <span class="eb" id="car__220">jump</span> a red light/the lights</span><span class="li" id="car__221"> <span class="eb" id="car__222">be arrested for/charged with</span> <span class="label-g" id="car__223"><span class="wrap">(</span><span class="geo" id="car__224" geo="br">British English</span><span class="wrap">)</span></span> drink-driving/<span class="label-g" id="car__225"><span class="wrap">(</span><span class="geo" id="car__226" geo="usa">both US English</span><span class="wrap">)</span></span> driving under the influence (DUI)/driving while intoxicated (DWI)</span><span class="li" id="car__227"> <span class="eb" id="car__228">be banned/</span><span class="label-g" id="car__229"><span class="wrap">(</span><span class="geo" id="car__230" geo="br">British English</span><span class="wrap">)</span></span> <span class="eb" id="car__231">disqualified</span> from driving</span></span></span></span></span> <span class="xr-gs" id="car__232"><span class="prefix">see also</span> <a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/company-car" title="company car definition"><span class="xr-g" id="car__233"><span class="xh" id="car__234">company car</span></span></a></span><span class="collapse" title="Wordfinder"><span class="unbox" id="car__235" unbox="wordfinder"> <span class="heading">Wordfinder</span><span class="body" id="car__236"><span class="p" id="car__237"><span class="xr-gs" id="car__238"><a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/accelerate" title="accelerate definition"><span class="xr-g" id="car__239"><span class="xh" id="car__240">accelerate</span></span></a><span class="sep">,</span> <a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/brake_1" title="brake definition"><span class="xr-g" id="car__241"><span class="xh" id="car__242">brake</span></span></a><span class="sep">,</span> <a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/car" title="car definition"><span class="xr-g" id="car__243"><span class="xh" id="car__244">car</span></span></a><span class="sep">,</span> <a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/commute_1" title="commute definition"><span class="xr-g" id="car__245"><span class="xh" id="car__246">commute</span></span></a></span><span class="sep">,</span> <span class="xr-gs" id="car__247"><a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/driving_1" title="driving definition"><span class="xr-g" id="car__248"><span class="xh" id="car__249">driving</span></span></a></span><span class="sep">,</span> <span class="xr-gs" id="car__250"><a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/licence" title="licence definition"><span class="xr-g" id="car__251"><span class="xh" id="car__252">licence</span></span></a><span class="sep">,</span> <a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/motorist" title="motorist definition"><span class="xr-g" id="car__253"><span class="xh" id="car__254">motorist</span></span></a></span><span class="sep">,</span> <span class="xr-gs" id="car__255"><a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/road" title="road definition"><span class="xr-g" id="car__256"><span class="xh" id="car__257">road</span></span></a></span><span class="sep">,</span> <span class="xr-gs" id="car__258"><a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/road-tax" title="road tax definition"><span class="xr-g" id="car__259"><span class="xh" id="car__260">road tax</span></span></a></span><span class="sep">,</span> <span class="xr-gs" id="car__261"><a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/traffic_1" title="traffic definition"><span class="xr-g" id="car__262"><span class="xh" id="car__263">traffic</span></span></a></span></span></span></span></span><span class="collapse" title="Culture"><span class="unbox" id="car__264" unbox="cult" psg="Guide-NonStub"> <span class="heading">Culture</span><span class="body" id="car__265"><span class="h1" id="car__266">driving</span><span class="p" id="car__267">Americans have long had a ‘love affair’ with the <span class="ndv" id="car__268">automobile</span> (<span class="ei" id="car__269">also</span> car), and are surprised when they meet somebody who cannot drive. Almost everybody over the age of 15 is a driver and most households have a vehicle. American life is arranged so that people can do most things from their cars. There are <span class="eb" id="car__270">drive-in</span> banks, post offices, restaurants, movie theatres and even some churches.</span><span class="p" id="car__271">In Britain the proportion of the population who are drivers is slightly less but, as in the US, many people prefer to use their car rather than public transport, because it is more convenient and because they like to be independent. In order to reduce <span class="ndv" id="car__272">pollution</span> the government tries to discourage car ownership by making driving expensive. In particular, it puts a heavy tax on fuel and increases the annual <span class="eb" id="car__273">road tax</span> for cars that cause heavy pollution. <span class="ndv" type="deadxref">Congestion charging</span> is used to persuade people to avoid driving their cars in city centres.</span><span class="p" id="car__274">To many people the make and quality of their car reflects their status in society, and it is important to them to get a smart new car every few years. In Britain since 2001 the <span class="eb" id="car__275">registration number</span> of a car shows the place and date of registration but older <span class="eb" id="car__276">number plates</span> can be used and a <span class="eb" id="car__277">personalized number plate</span> <span class="gl" id="car__278"><span class="wrap">(</span><span class="prefix">=</span> a registration number that spells out the owner's name or initials<span class="wrap">)</span></span> may also suggest status. Many people prefer to buy a small, <span class="ndv" id="car__279">economical</span> car, or get a <span class="ndv" id="car__280">second-hand</span> one. Cars in the US are often larger than those in Britain and though fuel is cheaper, insurance is expensive. In the US car <span class="eb" id="car__281">license plates</span>, commonly called <span class="eb" id="car__282">tags</span>, are given by the states. New ones must be bought every two or three years, or when a driver moves to another state. The states use the plates to advertise themselves: <span class="ndv" type="singlewd">Alabama</span> plates say ‘The heart of Dixie’ and have a small heart on them, and <span class="ndv" type="singlewd">Illinois</span> has ‘The land of Lincoln’.</span><span class="p" id="car__283">In Britain, before a person can get a <span class="eb" id="car__284">driving licence</span> they must pass an official <span class="eb" id="car__285">driving test</span>, which includes a written test of the <span class="ndv" type="deadxref">Highway Code</span> <span class="gl" id="car__286"><span class="wrap">(</span><span class="prefix">=</span> the rules that all road users must obey<span class="wrap">)</span></span> and a practical driving exam. Only people aged 17 or over are allowed to drive. <span class="eb" id="car__287">Learner drivers</span> who have a <span class="eb" id="car__288">provisional driving licence</span> must display an <span class="eb" id="car__289">L-plate</span>, a large red ‘L’, on their car, and be <span class="ndv" id="car__290">supervised</span> by a qualified driver. The US has no national <span class="eb" id="car__291">driver's license</span> (<span class="ei" id="car__292">AmE</span>), but instead licences are issued by each state. Most require written tests, an eye test and a short practical test. The minimum age for getting a licence is normally 16, although some states will issue a <span class="eb" id="car__293">learner's permit</span> to drivers as young as 14. Many states now apply a system of <span class="eb" id="car__294">graduated licenses</span> in which young drivers are first required to have an <span class="eb" id="car__295">intermediate license</span> for a period of time before being given a <span class="eb" id="car__296">full license</span>. An intermediate licence may, for example, prevent driving alone at particular times of the day or require the driver to take special classes if they drive badly. Americans have to get a new driver's license if they move to another state.</span><span class="p" id="car__297">In Britain people drive on the left and in the US they drive on the right. Generally British and US drivers are relatively careful and <span class="ndv" id="car__298">courteous</span> but there is dangerous driving. In the US many of the deaths due to <span class="eb" id="car__299">traffic accidents</span> are caused by drivers who have drunk alcohol. <span class="eb" id="car__300">Drink-driving</span> (<span class="ei" id="car__301">AmE</span> <span class="eb" id="car__302">driving under the influence</span> or <span class="eb" id="car__303">driving while intoxicated</span>) <span class="gl" id="car__304"><span class="wrap">(</span><span class="prefix">=</span> driving a car after drinking alcohol<span class="wrap">)</span></span> is also a serious problem in Britain. On many British roads <span class="eb" id="car__305">speed cameras</span> have been set up to catch drivers who go too fast. In the US the main job of state <span class="eb" id="car__306">highway patrols</span> is to prevent <span class="eb" id="car__307">speeding</span>.</span><span class="p" id="car__308">Many drivers belong to a motoring organization in case their car breaks down. In Britain the main ones are the <span class="ndv" type="singlewd">AA</span> (Automobile Association) and the <span class="ndv" type="singlewd">RAC</span> (Royal Automobile Club), and in the US the largest is the <span class="ndv" type="deadxref">American Automobile Association</span>.</span></span></span></span> <span class="xr-gs"><span class="prefix">See related entries:</span> <a class="Ref" href="http://www.oxfordlearnersdictionaries.com/topic/types_of_vehicle/car_2" title="Topic Types of vehicle"><span class="xr-g" resource="topicdict"><span class="xh">Types of vehicle</span></span></a></span></li><li class="sn-g" id="car__310" ox3000="y"><div id="ox-enlarge"><a class="topic" title="" href="http://www.oxfordlearnersdictionaries.com/media/english/fullsize/t/tra/train/trains.jpg"><img class="thumb" border="1" alt="" title="" src="http://www.oxfordlearnersdictionaries.com/media/english/thumb/t/tra/train/trains.jpg"/><span class="ox-enlarge-label">enlarge image</span></a><!-- End of DIV --></div><span class="num">2 </span><span class="sym_first">
317
+ <a class="oxford3000" href="http://www.oxfordlearnersdictionaries.com/wordlist/english/oxford3000/"> </a></span><span class="v-gs" id="car__311" type="vf"><span class="wrap">(</span><span class="prefix">also</span> <span class="v-g" id="car__312"><span class="v"><strong>railcar</strong></span> <span class="label-g" id="car__314"><span class="geo" id="car__315" geo="n_am">both North American English</span></span></span><span class="wrap">)</span></span> <span class="def" id="car__316">a separate section of a train</span><span class="x-gs" id="car__317"><span class="x-g" id="car__318"> <span class="rx-g" id="car__319" resource="recx" source="ald9"><span class="x" id="car__320">Several cars went off the rails.</span></span></span></span> <span class="xr-gs"><span class="prefix">See related entries:</span> <a class="Ref" href="http://www.oxfordlearnersdictionaries.com/topic/trains/car_1" title="Topic Trains"><span class="xr-g" resource="topicdict"><span class="xh">Trains</span></span></a></span></li><li class="sn-g" id="car__324"><span class="num">3</span><span class="use" id="car__325"><span class="wrap">(</span>in compounds<span class="wrap">)</span></span> <span class="def" id="car__326">a coach/<span class="dh" id="car__327">car</span> on a train of a particular type</span><span class="x-gs" id="car__328"><span class="x-g" id="car__329"> <span class="x" id="car__330">a <span class="cl"><strong>sleeping/dining car</strong></span></span></span></span></li></span><span class="res-g"><span class="collapse" title="Word Origin"><span class="unbox" id="car__332" unbox="word_origin"> <span class="heading">Word Origin</span><span class="body" id="car__333"> <span class="def" id="car__334"><span class="lang" id="car__335">late Middle English</span></span> (in the general sense <span class="qt" id="car__336">‘wheeled vehicle’</span>): from <span class="lang" id="car__337">Old Northern French</span> <span class="ff" id="car__338">carre</span>, based on <span class="lang" id="car__339">Latin</span> <span class="ff" id="car__340">carrum</span>, <span class="ff" id="car__341">carrus</span>, of <span class="lang" id="car__342">Celtic</span> origin.</span></span></span><span class="collapse" title="Extra examples"><span class="unbox" unbox="Extra examples"><span class="heading">Extra examples</span><span class="body"><span class="x-gs" id="car__343"><span class="x-g" id="car__344"> <span class="x" id="car__345">He got in the car and they drove off.</span></span><span class="x-g" id="car__346"> <span class="x" id="car__347">He pulled his car over at a small hotel.</span></span><span class="x-g" id="car__348"> <span class="x" id="car__349">He swerved his car sharply to the right.</span></span><span class="x-g" id="car__350"> <span class="x" id="car__351">Her car skidded on a patch of ice.</span></span><span class="x-g" id="car__352"> <span class="x" id="car__353">His car hit a van coming in the opposite direction.</span></span><span class="x-g" id="car__354"> <span class="x" id="car__355">I have to take the car in for a service.</span></span><span class="x-g" id="car__356"> <span class="x" id="car__357">I lost control of the car and it spun off the road.</span></span><span class="x-g" id="car__358"> <span class="x" id="car__359">I’ll wait for you in the car.</span></span><span class="x-g" id="car__360"> <span class="x" id="car__361">It’s too far to walk. I’ll take the car.</span></span><span class="x-g" id="car__362"> <span class="x" id="car__363">It’s very expensive to run a car these days.</span></span><span class="x-g" id="car__364"> <span class="x" id="car__365">Police in an unmarked car had been following the stolen vehicle for several minutes.</span></span><span class="x-g" id="car__366"> <span class="x" id="car__367">The car does 55 miles per gallon.</span></span><span class="x-g" id="car__368"> <span class="x" id="car__369">The car was doing over 100 miles an hour.</span></span><span class="x-g" id="car__370"> <span class="x" id="car__371">The government wants more people to use public transport instead of private cars.</span></span><span class="x-g" id="car__372"> <span class="x" id="car__373">The government wants to reduce the use of private cars.</span></span><span class="x-g" id="car__374"> <span class="x" id="car__375">The kids all piled into the car.</span></span><span class="x-g" id="car__376"> <span class="x" id="car__377">The number of cars on the road is increasing all the time.</span></span><span class="x-g" id="car__378"> <span class="x" id="car__379">The red car suddenly pulled out in front of me.</span></span><span class="x-g" id="car__380"> <span class="x" id="car__381">The robbers abandoned their getaway car and ran off.</span></span><span class="x-g" id="car__382"> <span class="x" id="car__383">The robbers abandoned their getaway car in Sealand Road.</span></span><span class="x-g" id="car__384"> <span class="x" id="car__385">There was a line of parked cars in front of the building.</span></span><span class="x-g" id="car__386"> <span class="x" id="car__387">There’s not enough car parking in the city.</span></span><span class="x-g" id="car__388"> <span class="x" id="car__389">They take the children to school by car.</span></span><span class="x-g" id="car__390"> <span class="x" id="car__391">What cheek! That car pulled out right in front of me!</span></span><span class="x-g" id="car__392"> <span class="x" id="car__393">You lock up the house and I’ll get the car out.</span></span><span class="x-g" id="car__394"> <span class="x" id="car__395">a car boot sale</span></span><span class="x-g" id="car__396"> <span class="x" id="car__397">a used car salesman</span></span><span class="x-g" id="car__398"> <span class="x" id="car__399">cars that run on diesel</span></span><span class="x-g" id="car__400"> <span class="x" id="car__401">‘How did you come?’ ‘By car.’</span></span><span class="x-g" id="car__402"> <span class="x" id="car__403">Are we going in the car?</span></span><span class="x-g" id="car__404"> <span class="x" id="car__405">He had to take his car to the garage.</span></span><span class="x-g" id="car__406"> <span class="x" id="car__407">He opened the car door for her.</span></span><span class="x-g" id="car__408"> <span class="x" id="car__409">I can put the wheelchair in the back of the car.</span></span><span class="x-g" id="car__410"> <span class="x" id="car__411">I decided to buy a second-hand car.</span></span><span class="x-g" id="car__412"> <span class="x" id="car__413">She was sitting in the smoking car.</span></span><span class="x-g" id="car__414"> <span class="x" id="car__415">The driver crashed the stolen car while being chased by the police.</span></span><span class="x-g" id="car__416"> <span class="x" id="car__417">They parked the car and walked the rest of the way.</span></span><span class="x-g" id="car__418"> <span class="x" id="car__419">They were admiring his new sports car.</span></span><span class="x-g" id="car__420"> <span class="x" id="car__421">a buffet car</span></span><span class="x-g" id="car__422"> <span class="x" id="car__423">a sleeping/dining car</span></span></span></span></span></span></span></ol><div class="pron-link">Check pronunciation: <a href="http://www.oxfordlearnersdictionaries.com/pronunciation/english/car">car</a><!-- End of DIV pron-link--></div><!-- End of DIV entry--></div>
239
318
  </div>
240
- <div>
241
- <h1 class="definition-title">Definition of <em>car noun</em> from the Oxford Advanced Learner&apos;s Dictionary</h1>
319
+
320
+ <div class="entry-in-other-dict responsive_row">
321
+ See the Oxford Advanced American Dictionary entry: <a href=http://www.oxfordlearnersdictionaries.com/definition/american_english/car>car</a>
322
+ </div>
323
+ <div class="responsive_row responsive_display_on_smartphone">
324
+ <div class="responsive_entry_center_right"> <div class="social-wrap">
325
+ <span id="plusone-box"><g:plusone size="normal" href="http://www.oxfordlearnersdictionaries.com/definition/english/car.html" count="false"></g:plusone></span>
326
+ <a href="http://www.facebook.com/sharer.php?u=http://www.oxfordlearnersdictionaries.com/definition/english/car.html&t=car noun - Definition, pictures, pronunciation and usage notes | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com" target="_blank" class="facebook-btn" alt="share this entry on Facebook" title="share this entry on Facebook" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'facebook', 'http://www.oxfordlearnersdictionaries.com/definition/english/car.html', null, true]);"></a>
327
+ <a href="http://twitter.com/home?status=Add+This:+http://www.oxfordlearnersdictionaries.com/definition/english/car.html" target="_blank" class="twitter-btn" alt="tweet this entry" title="tweet this entry" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'twitter', 'http://www.oxfordlearnersdictionaries.com/definition/english/car.html', null, true]);"></a>
328
+ <a href="http://www.stumbleupon.com/submit?url=http://www.oxfordlearnersdictionaries.com/definition/english/car.html" target="_blank" class="stumbleupon-btn" alt="share this entry on StumbleUpon" title="share this entry on StumbleUpon" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'stumbleupon', 'http://www.oxfordlearnersdictionaries.com/definition/english/car.html', null, true]);"></a>
329
+ <a href="http://www.diigo.com/post?url=http://www.oxfordlearnersdictionaries.com/definition/english/car.html" target="_blank" class="diigo-btn" alt="share this entry on Diigo" title="share this entry on Diigo" onclick="_gaq.push(['_trackEvent', 'share_this_entry', 'diigo', 'http://www.oxfordlearnersdictionaries.com/definition/english/car.html', null, true]);"></a>
330
+ <a href="mailto:?subject=car noun - Definition, pictures, pronunciation and usage notes | Oxford Advanced Learner&apos;s Dictionary at OxfordLearnersDictionaries.com&body=http://www.oxfordlearnersdictionaries.com/definition/english/car.html" alt="email this entry" title="email this entry" class="email-btn"></a>
331
+ </div>
242
332
  </div>
243
- <div id="entryContent"><div xmlns="http://www.w3.org/1999/xhtml" class="entry" id="car" random="y"><div class="h-g" id="car__1"><div class="top-container"><div class="top-g" id="car__2"><span class="block-g" id="car__10"><span class="z"> </span><div id="ox-enlarge"><a class="topic" title="picture of a dashboard" href="http://www.oxfordlearnersdictionaries.com/media/english/fullsize/c/car/car_d/car_dashboard_comp.jpg"><img class="thumb" border="1" alt="picture of a dashboard" title="picture of a dashboard" src="http://www.oxfordlearnersdictionaries.com/media/english/thumb/d/das/dashb/dashboard.jpg"/><div style="clear:both; font-size:0;line-height: 0px;"><!-- End of DIV --></div><img border="1" alt="" title="" class="enlarge-icon" src="http://www.oxfordlearnersdictionaries.com/external/images/documents/bt-enlarge.gif?version=1.1.28"/></a><!-- End of DIV --></div></span><div class="core_block"><div class="webtop-g"><span class="z"> </span>
244
- <a href="http://www.oxfordlearnersdictionaries.com/wordlist/english/oxford3000/"><img src="http://www.oxfordlearnersdictionaries.com/external/images/coresym.gif?version=1.1.28" border="0" title="Oxford3000" alt="Oxford3000" class="icon over"/></a><h2 class="h"><span class="z_core_h">car</span></h2><span class="z"> </span><span class="pos">noun</span><!-- End of DIV webtop-g--></div><!-- End of DIV core_block--></div><div class="ei-g" id="car__7"><span class="z"> </span><span class="i" id="car__8">kɑː(r)</span> <div class="sound audio_play_button pron-uk icon-audio" data-src-mp3="http://www.oxfordlearnersdictionaries.com/media/english/uk_pron/c/car/car__/car__gb_1.mp3" data-src-ogg="http://www.oxfordlearnersdictionaries.com/media/english/uk_pron_ogg/c/car/car__/car__gb_1.ogg" title=" pronunciation English" style="cursor: pointer" valign="top"> <!-- End of DIV sound audio_play_button pron-uk icon-audio--></div><span class="z">; </span><span class="y" id="car__9">kɑːr</span> <div class="sound audio_play_button pron-us icon-audio" data-src-mp3="http://www.oxfordlearnersdictionaries.com/media/english/us_pron/c/car/car__/car__us_1.mp3" data-src-ogg="http://www.oxfordlearnersdictionaries.com/media/english/us_pron_ogg/c/car/car__/car__us_1.ogg" title=" pronunciation American" style="cursor: pointer" valign="top"> <!-- End of DIV sound audio_play_button pron-us icon-audio--></div><span class="z"> </span><!-- End of DIV ei-g--></div><!-- End of DIV top-g--></div><div class="clear"> <!-- End of DIV clear--></div><!-- End of DIV top-container--></div><span class="n-g" id="car__11" cefr="a1"><img src="http://www.oxfordlearnersdictionaries.com/external/images/coresym2.gif?version=1.1.28" title="" alt="" class="icon"/><span class="z_n">1</span><span class="z"> </span><span class="vs-g" id="car__12"><span class="z"> (</span><span class="z_g"><span class="z_g_er">also</span> British English</span><span class="z"> </span><span class="z_r">formal</span><span class="z"> </span><span class="v"><strong>motor car</strong></span><span class="z">)</span></span><span class="vs-g" id="car__16"><span class="z"> (</span><span class="z_g">North American English <span class="z_g_er">also</span></span><span class="z"> </span><span class="v"><strong>automobile</strong></span><span class="z">)</span></span><span class="z"> </span><span class="d" id="car__19">a road vehicle with an engine and four wheels that can carry a small number of passengers</span><span class="x-g"><span class="x" id="car__20">Paula got into the car and drove off.</span></span><span class="x-g"><span class="x" id="car__21">‘How did you come?’ ‘ <span class="cl"><strong>By car</strong></span>.’</span></span><span class="x-g"><span class="x" id="car__23">Are you going <span class="cl"><strong>in the car</strong></span>?</span></span><span class="x-g"><span class="x" id="car__25">a <span class="cl"><strong>car driver/manufacturer/dealer</strong></span></span></span><span class="x-g"><span class="x" id="car__27">a <span class="cl"><strong>car accident/crash</strong></span></span></span><span class="x-g"><span class="x" id="car__29">Where can I park the car?</span></span><span class="z"> </span><span class="xr-g" id="car__30"><span class="xr" id="car__31"><span class="z_xr"> see also </span><a class="Ref" href="http://www.oxfordlearnersdictionaries.com/definition/english/company-car" title="company car definition"><span class="xh" id="car__32">company car</span></a></span></span></span><span class="n-g" id="car__33"><img src="http://www.oxfordlearnersdictionaries.com/external/images/coresym2.gif?version=1.1.28" title="" alt="" class="icon"/><span class="z_n">2</span><span class="z"> </span><span class="vs-g" id="car__34"><span class="z"> (</span><span class="z_vs-g">also</span><span class="z"> </span><span class="v"><strong>railcar</strong></span><span class="z"> </span><span class="z_g"><span class="z_g_er">both</span> North American English</span><span class="z">)</span></span><span class="z"> </span><span class="d" id="car__37">a separate section of a train</span><span class="x-g"><span class="x" id="car__38">Several cars went off the rails.</span></span></span><span class="n-g" id="car__39"><span class="z_n">3</span><span class="z"> </span><span class="z">(</span><span class="z_g">British English</span><span class="z">) (</span><span class="u" id="car__41">in compounds</span><span class="z">) </span><span class="d" id="car__42">a coach/<span class="dh" id="car__43">car</span> on a train of a particular type</span><span class="x-g"><span class="x" id="car__44">a <span class="cl"><strong>sleeping/dining car</strong></span></span></span></span><!-- End of DIV h-g--></div><span class="unbox" id="car__47" type="colloc"><span class="title"><a href="http://www.oxfordlearnersdictionaries.com/wordlist/english/usage_notes/unbox_colloc/"><img border="0" alt="Usage note" class="icon over" src="http://www.oxfordlearnersdictionaries.com/external/images/mid-usage.gif?version=1.1.28" title="Usage note"/></a><strong class="usage_note_header">Usage note:</strong> Driving</span><span class="collsubhead" id="car__49">Having a car</span><span class="para"><span class="eb" id="car__50">have/own/</span>(<span class="ungi" id="car__51">British English</span>) <span class="eb" id="car__52">run</span> a car</span><span class="para"><span class="eb" id="car__53">ride</span> a motorcycle/motorbike</span><span class="para"><span class="eb" id="car__54">drive/prefer/use</span> an automatic/a manual/(<span class="ungi" id="car__55">North American English, informal</span>) a stick shift</span><span class="para"><span class="eb" id="car__56">have/get</span> your car <span class="eb" id="car__57">serviced/fixed/repaired</span></span><span class="para"><span class="eb" id="car__58">buy/sell</span> a used car/(<span class="ungi" id="car__59">especially British English</span>) a second-hand car</span><span class="para"><span class="eb" id="car__60">take/pass/fail</span> a (<span class="ungi" id="car__61">British English</span>) driving test/(<span class="ungi" id="car__62">both North American English</span>) driver's test/road test</span><span class="para"><span class="eb" id="car__63">get/obtain/have/lose/carry</span> a/your (<span class="ungi" id="car__64">British English</span>) driving licence/(<span class="ungi" id="car__65">North American English</span>) driver's license</span><span class="collsubhead" id="car__66">Driving</span><span class="para"><span class="eb" id="car__67">put on/fasten/</span>(<span class="ungi" id="car__68">North American English</span>) <span class="eb" id="car__69">buckle/wear/undo</span> your seat belt/safety belt</span><span class="para"><span class="eb" id="car__70">put/turn/leave</span> the key in the ignition</span><span class="para"><span class="eb" id="car__71">start</span> the car/engine</span><span class="para">(<span class="ungi" id="car__72">British English</span>) <span class="eb" id="car__73">change/</span>(<span class="ungi" id="car__74">North American English</span>) <span class="eb" id="car__75">shift/put something into</span> gear</span><span class="para"><span class="eb" id="car__76">press/put your foot on</span> the brake pedal/clutch/accelerator</span><span class="para"><span class="eb" id="car__77">release</span> the clutch/(<span class="ungi" id="car__78">especially British English</span>) the handbrake/(<span class="ungi" id="car__79">both North American English</span>) the emergency brake/the parking brake</span><span class="para"><span class="eb" id="car__80">drive/park/reverse</span> the car</span><span class="para">(<span class="ungi" id="car__81">British English</span>) <span class="eb" id="car__82">indicate</span> left/right</span><span class="para">(<span class="ungi" id="car__83">especially North American English</span>) <span class="eb" id="car__84">signal</span> that you are turning left/right</span><span class="para"><span class="eb" id="car__85">take/miss</span> (<span class="ungi" id="car__86">British English</span>) the turning/(<span class="ungi" id="car__87">especially North American English</span>) the turn</span><span class="para"><span class="eb" id="car__88">apply/hit/slam on</span> the brake(s)</span><span class="para"><span class="eb" id="car__89">beep/honk/</span>(<span class="ungi" id="car__90">especially British English</span>) <span class="eb" id="car__91">toot/</span>(<span class="ungi" id="car__92">British English</span>) <span class="eb" id="car__93">sound</span> your horn</span><span class="collsubhead" id="car__94">Problems and accidents</span><span class="para">a car <span class="eb" id="car__95">skids/crashes (into something)/collides (with something)</span></span><span class="para"><span class="eb" id="car__96">swerve to avoid</span> an oncoming car/a pedestrian</span><span class="para"><span class="eb" id="car__97">crash/lose control of</span> the car</span><span class="para"><span class="eb" id="car__98">have/be in/be killed in/survive</span> a car crash/a car accident/(<span class="ungi" id="car__99">North American English</span>) a car wreck/a hit-and-run</span><span class="para"><span class="eb" id="car__100">be run over/knocked down by</span> a car/bus/truck</span><span class="para"><span class="eb" id="car__101">dent/hit</span> (<span class="ungi" id="car__102">British English</span>) the bonnet/(<span class="ungi" id="car__103">North American English</span>) the hood</span><span class="para"><span class="eb" id="car__104">break/crack/shatter</span> (<span class="ungi" id="car__105">British English</span>) the windscreen/(<span class="ungi" id="car__106">North American English</span>) the windshield</span><span class="para"><span class="eb" id="car__107">blow/</span>(<span class="ungi" id="car__108">especially British English</span>) <span class="eb" id="car__109">burst/puncture</span> (<span class="ungi" id="car__110">British English</span>) a tyre/(<span class="ungi" id="car__111">North American English</span>) a tire</span><span class="para"><span class="eb" id="car__112">get/have</span> (<span class="ungi" id="car__113">British English</span>) a flat tyre/a flat tire/a puncture</span><span class="para"><span class="eb" id="car__114">inflate/change/fit/replace/check</span> a tyre/tire</span><span class="collsubhead" id="car__115">Traffic and driving regulations</span><span class="para"><span class="eb" id="car__116">be caught in/get stuck in/sit in</span> a traffic jam</span><span class="para"><span class="eb" id="car__117">cause</span> congestion/tailbacks/traffic jams/gridlock</span><span class="para"><span class="eb" id="car__118">experience/face</span> lengthy delays</span><span class="para"><span class="eb" id="car__119">beat/avoid</span> the traffic/the rush hour</span><span class="para"><span class="eb" id="car__120">break/observe/</span>(<span class="ungi" id="car__121">North American English</span>) <span class="eb" id="car__122">drive</span> the speed limit</span><span class="para"><span class="eb" id="car__123">be caught on</span> (<span class="ungi" id="car__124">British English</span>) a speed camera</span><span class="para"><span class="eb" id="car__125">stop somebody for/pull somebody over for/</span>(<span class="ungi" id="car__126">British English, informal</span>) <span class="eb" id="car__127">be done for</span> speeding</span><span class="para">(<span class="ungi" id="car__128">both informal</span>) <span class="eb" id="car__129">run/</span>(<span class="ungi" id="car__130">British English</span>) <span class="eb" id="car__131">jump</span> a red light/the lights</span><span class="para"><span class="eb" id="car__132">be arrested for/charged with</span> (<span class="ungi" id="car__133">British English</span>) drink-driving/(<span class="ungi" id="car__134">both US</span>) driving under the influence (DUI)/driving while intoxicated (DWI)</span><span class="para"><span class="eb" id="car__135">be banned/</span>(<span class="ungi" id="car__136">British English</span>) <span class="eb" id="car__137">disqualified</span> from driving</span></span><!-- End of DIV entry--></div>
245
333
  </div>
246
334
 
335
+ </div>
247
336
 
337
+ <div class="responsive_hide_on_smartphone responsive_center" id="btmOthers">
338
+ <div id='ad_btmslot_a' class='am-default'>
339
+ <script type='text/javascript'>
340
+ googletag.cmd.push(function() { googletag.display('ad_btmslot_a'); });
341
+ </script>
342
+ </div>
343
+ </div>
248
344
  </div>
249
345
  </div>
250
- <div class="responsive_row">
251
-
252
-
253
- <div class=' responsive_hide_on_smartphone'>
254
- <div id='dfp_ad_Entry_Btm_300x250' style='width:300px; height:250px;'>
255
- <script type='text/javascript'>
256
- var smartphone = false;
257
- var tablet = false;
258
- var hd = false;
259
- try{
260
- var smartphone = window.matchMedia("(max-width: 761px)").matches;
261
- var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
262
- var hd = window.matchMedia("(min-width: 1220px)").matches;
263
- }catch(err){}
264
- var desktop = (!smartphone && !tablet && !hd);
265
- if (smartphone && false || tablet && true || desktop && true || hd && true)
266
- googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_Btm_300x250'); });
267
- </script>
268
- </div>
269
-
270
- </div>
271
-
272
-
273
- <div class='responsive_center_on_smartphone responsive_hide_on_tablet responsive_hide_on_desktop responsive_hide_on_hd'>
274
- <div id='dfp_ad_Entry_300x250' style='width:300px; height:250px;'>
275
- <script type='text/javascript'>
276
- var smartphone = false;
277
- var tablet = false;
278
- var hd = false;
279
- try{
280
- var smartphone = window.matchMedia("(max-width: 761px)").matches;
281
- var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
282
- var hd = window.matchMedia("(min-width: 1220px)").matches;
283
- }catch(err){}
284
- var desktop = (!smartphone && !tablet && !hd);
285
- if (smartphone && true || tablet && false || desktop && false || hd && false)
286
- googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_300x250'); });
346
+ <div id="rightcolumn" class="responsive_entry_center_right">
347
+ <div id="relatedentries" class="responsive_row">
348
+ <h4 class="no-rule">Other results</h4>
349
+ <dl class="accordion ui-grad">
350
+ <dt>All matches</dt>
351
+ <dd>
352
+ <ul class="list-col">
353
+ <li >
354
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/carriage#carriage__23" title="carriage noun definition"><span class='arl2'>carriage <pos>noun</pos></span></a>
355
+ </li>
356
+ <li >
357
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/truck_1#truck_1__208" title="truck noun definition"><span class='arl2'>truck <pos>noun</pos></span></a>
358
+ </li>
359
+ <li >
360
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/in-car" title="in-car adjective definition"><span class='arl6'>in-car <pos>adjective</pos></span></a>
361
+ </li>
362
+ <li >
363
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-bra" title="car bra noun definition"><span class='arl6'>car bra <pos>noun</pos></span></a>
364
+ </li>
365
+ <li >
366
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-tax" title="car tax noun definition"><span class='arl6'>car tax <pos>noun</pos></span></a>
367
+ </li>
368
+ <li >
369
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/club-car" title="club car noun definition"><span class='arl6'>club car <pos>noun</pos></span></a>
370
+ </li>
371
+ <li >
372
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/cable-car" title="cable car noun definition"><span class='arl6'>cable car <pos>noun</pos></span></a>
373
+ </li>
374
+ <li >
375
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-bomb" title="car bomb noun definition"><span class='arl6'>car bomb <pos>noun</pos></span></a>
376
+ </li>
377
+ <li class='more'>
378
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-coat" title="car coat noun definition"><span class='arl6'>car coat <pos>noun</pos></span></a>
379
+ </li>
380
+ <li class='more'>
381
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-crash" title="car crash noun definition"><span class='arl6'>car crash <pos>noun</pos></span></a>
382
+ </li>
383
+ <li class='more'>
384
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-park" title="car park noun definition"><span class='arl6'>car park <pos>noun</pos></span></a>
385
+ </li>
386
+ <li class='more'>
387
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-phone" title="car phone noun definition"><span class='arl6'>car phone <pos>noun</pos></span></a>
388
+ </li>
389
+ <li class='more'>
390
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-pool" title="car pool noun definition"><span class='arl6'>car pool <pos>noun</pos></span></a>
391
+ </li>
392
+ <li class='more'>
393
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-seat" title="car seat noun definition"><span class='arl6'>car seat <pos>noun</pos></span></a>
394
+ </li>
395
+ <li class='more'>
396
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-wash" title="car wash noun definition"><span class='arl6'>car wash <pos>noun</pos></span></a>
397
+ </li>
398
+ <li class='more'>
399
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/motor-car" title="motor car noun definition"><span class='arl6'>motor car <pos>noun</pos></span></a>
400
+ </li>
401
+ <li class='more'>
402
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/squad-car" title="squad car noun definition"><span class='arl6'>squad car <pos>noun</pos></span></a>
403
+ </li>
404
+ <li class='more'>
405
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/stock-car" title="stock car noun definition"><span class='arl6'>stock car <pos>noun</pos></span></a>
406
+ </li>
407
+ <li class='more'>
408
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/panda-car" title="panda car noun definition"><span class='arl6'>panda car <pos>noun</pos></span></a>
409
+ </li>
410
+ <li class='more'>
411
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/race-car" title="race car noun definition"><span class='arl6'>race car <pos>noun</pos></span></a>
412
+ </li>
413
+ </ul>
414
+ <a class="see-more" >See more</a>
415
+ </dd>
416
+ <dt>Idioms</dt>
417
+ <dd>
418
+ <ul class="list-col">
419
+ <li >
420
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/year#year__393" title="Definition of man, woman, car, etc. of the ˈyear in English"><span class='arl8'>man, woman, car, etc. of the ˈyear</span></a>
421
+ </li>
422
+ </ul>
423
+ </dd>
424
+ </dl>
425
+ </div>
426
+ <div class="responsive_row nearby">
427
+ <h4>Nearby words</h4>
428
+ <ul class="list-col">
429
+ <li>
430
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/capture_1" title="Definition of capture verb in English"><DATA class="hwd">capture <pos>verb</pos></DATA></a>
431
+ </li>
432
+ <li>
433
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/capybara" title="Definition of capybara noun in English"><DATA class="hwd">capybara <pos>noun</pos></DATA></a>
434
+ </li>
435
+ <li>
436
+ <span>
437
+ <a class='selected' href="http://www.oxfordlearnersdictionaries.com/definition/english/car" title="Definition of car noun in English"><DATA class="hwd">car <pos>noun</pos></DATA></a>
438
+ </span> </li>
439
+ <li>
440
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/carafe" title="Definition of carafe noun in English"><DATA class="hwd">carafe <pos>noun</pos></DATA></a>
441
+ </li>
442
+ <li>
443
+ <a href="http://www.oxfordlearnersdictionaries.com/definition/english/caramel" title="Definition of caramel noun in English"><DATA class="hwd">caramel <pos>noun</pos></DATA></a>
444
+ </li>
445
+ </ul>
446
+ </div>
447
+ <div class="responsive_row topic ">
448
+ <h4>Explore our topics</h4>
449
+ <ul class='list-col'>
450
+ <li>
451
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/animal_homes">Animals</a>
452
+ </li>
453
+ <li>
454
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/attractiveness">Body and appearance</a>
455
+ </li>
456
+ <li>
457
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/business_deals">Business</a>
458
+ </li>
459
+ <li>
460
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/accessories">Clothes and fashion</a>
461
+ </li>
462
+ <li>
463
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/committing_crime">Crime and law</a>
464
+ </li>
465
+ <li>
466
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/art_equipment">Culture</a>
467
+ </li>
468
+ <li>
469
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/access_to_education">Education</a>
470
+ </li>
471
+ <li>
472
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/death">Family and life stages</a>
473
+ </li>
474
+ <li>
475
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/in_the_kitchen">Food and drink</a>
476
+ </li>
477
+ <li>
478
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/diet">Health</a>
479
+ </li>
480
+ <li>
481
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/architectural_features">Houses and buildings</a>
482
+ </li>
483
+ <li>
484
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/language_skills">Language</a>
485
+ </li>
486
+ <li>
487
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/american_football">Leisure</a>
488
+ </li>
489
+ <li>
490
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/animal_farming">Nature</a>
491
+ </li>
492
+ <li>
493
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/anger">Personality and emotions</a>
494
+ </li>
495
+ <li>
496
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/elections">Religion and politics</a>
497
+ </li>
498
+ <li>
499
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/cost_and_payment">Retail</a>
500
+ </li>
501
+ <li>
502
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/devices">Science</a>
503
+ </li>
504
+ <li>
505
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/helping_others">Social issues</a>
506
+ </li>
507
+ <li>
508
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/computer_hardware">Technology</a>
509
+ </li>
510
+ <li>
511
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/celebrity_news">The media</a>
512
+ </li>
513
+ <li>
514
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/aircraft">Travel and tourism</a>
515
+ </li>
516
+ <li>
517
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/protest">War and conflict</a>
518
+ </li>
519
+ <li>
520
+ <a href="http://www.oxfordlearnersdictionaries.com/topic/describing_jobs">Work</a>
521
+ </li>
522
+ </ul>
523
+ </div>
524
+
525
+
526
+
527
+ <div class="responsive_display_on_smartphone responsive_center_on_smartphone" id="btmSmartphone">
528
+ <div id='ad_btmslot_b' class='am-default'>
529
+ <script type='text/javascript'>
530
+ googletag.cmd.push(function() { googletag.display('ad_btmslot_b'); });
287
531
  </script>
288
- </div>
289
-
290
- </div>
291
- </div>
292
-
293
- </div>
294
- </div>
532
+ </div>
533
+ </div>
295
534
 
296
- <div id="leftcolumn" class="responsive_cell_right">
297
- <div class="responsive_row responsive_display_on_hd" style="height:108px;"></div>
298
-
299
- <div id="relatedentries" class="responsive_row">
300
- <div id="resulthead">Search Results</div>
301
- <ul>
302
- <li class="currentpage">
303
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car" title="car noun definition"><span class='arl1'>car <pos>noun</pos></span></a>
304
- </li>
305
- <li>
306
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/carriage#carriage__15" title="carriage noun definition"><span class='arl2'>carriage <pos>noun</pos></span></a>
307
- </li>
308
- <li>
309
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/truck_1#truck_1__23" title="truck noun definition"><span class='arl2'>truck <pos>noun</pos></span></a>
310
- </li>
311
- <li>
312
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/in-car" title="in-car adjective definition"><span class='arl4'>in-car <pos>adjective</pos></span></a>
313
- </li>
314
- <li>
315
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-bra" title="car bra noun definition"><span class='arl4'>car bra <pos>noun</pos></span></a>
316
- </li>
317
- <li>
318
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-tax" title="car tax noun definition"><span class='arl4'>car tax <pos>noun</pos></span></a>
319
- </li>
320
- <li>
321
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/club-car" title="club car noun definition"><span class='arl4'>club car <pos>noun</pos></span></a>
322
- </li>
323
- <li>
324
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/cable-car" title="cable car noun definition"><span class='arl4'>cable car <pos>noun</pos></span></a>
325
- </li>
326
- <li>
327
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-bomb" title="car bomb noun definition"><span class='arl4'>car bomb <pos>noun</pos></span></a>
328
- </li>
329
- <li>
330
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-coat" title="car coat noun definition"><span class='arl4'>car coat <pos>noun</pos></span></a>
331
- </li>
332
- <li>
333
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-park" title="car park noun definition"><span class='arl4'>car park <pos>noun</pos></span></a>
334
- </li>
335
- <li>
336
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-phone" title="car phone noun definition"><span class='arl4'>car phone <pos>noun</pos></span></a>
337
- </li>
338
- <li>
339
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-pool" title="car pool noun definition"><span class='arl4'>car pool <pos>noun</pos></span></a>
340
- </li>
341
- <li>
342
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-seat" title="car seat noun definition"><span class='arl4'>car seat <pos>noun</pos></span></a>
343
- </li>
344
- <li>
345
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/car-wash" title="car wash noun definition"><span class='arl4'>car wash <pos>noun</pos></span></a>
346
- </li>
347
- <li>
348
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/motor-car" title="motor car noun definition"><span class='arl4'>motor car <pos>noun</pos></span></a>
349
- </li>
350
- <li>
351
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/panda-car" title="panda car noun definition"><span class='arl4'>panda car <pos>noun</pos></span></a>
352
- </li>
353
- <li>
354
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/race-car" title="race car noun definition"><span class='arl4'>race car <pos>noun</pos></span></a>
355
- </li>
356
- <li>
357
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/squad-car" title="squad car noun definition"><span class='arl4'>squad car <pos>noun</pos></span></a>
358
- </li>
359
- <li>
360
- <a href="http://www.oxfordlearnersdictionaries.com/definition/english/stock-car" title="stock car noun definition"><span class='arl4'>stock car <pos>noun</pos></span></a>
361
- </li>
362
- </ul>
363
- </div>
364
-
365
535
  <div class="responsive_row">
366
-
367
-
368
- <div class='responsive_center_on_smartphone'>
369
- <div id='dfp_ad_Entry_180x150' style='width:180px; height:150px;'>
370
- <script type='text/javascript'>
371
- var smartphone = false;
372
- var tablet = false;
373
- var hd = false;
374
- try{
375
- var smartphone = window.matchMedia("(max-width: 761px)").matches;
376
- var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
377
- var hd = window.matchMedia("(min-width: 1220px)").matches;
378
- }catch(err){}
379
- var desktop = (!smartphone && !tablet && !hd);
380
- if (smartphone && true || tablet && true || desktop && true || hd && true)
381
- googletag.cmd.push(function() {googletag.display('dfp_ad_Entry_180x150'); });
536
+
537
+ <div class='responsive_center_on_smartphone'>
538
+ <div id='ad_houseslot1_a' class='am-default'>
539
+ <script type='text/javascript'>
540
+ googletag.cmd.push(function() { googletag.display('ad_houseslot1_a'); });
382
541
  </script>
542
+ </div>
543
+ </div></div> </div>
544
+ </div>
545
+
546
+ </div>
547
+
383
548
  </div>
384
-
385
- </div>
386
- </div> </div>
549
+ </div>
550
+ <div id="ox-footer" class="responsive_row oup-footer">
551
+ <div class="responsive_container">
552
+
553
+ <div class="responsive_footer_top">
554
+ <div class="responsive_center_on_smartphone">
555
+ <div class="slt-logo"><img src="http://www.oxfordlearnersdictionaries.com/external/images/footer/logo-slt.png" title="Shaping Learning Together" alt="Shaping Learning Together"/></div>
556
+ <div class="btn icon-left social-facebook"><a href="https://www.facebook.com/oupeltglobal">Find us on Facebook</a></div>
557
+ <div class="btn icon-left social-twitter"><a href="https://twitter.com/OUPELTGlobal">Follow us on Twitter</a></div>
558
+ <ul class='links'>
559
+ <li><a href="https://elt.oup.com/" onclick="return ! window.open(this.href);">OUP English Language Teaching</a></li>
560
+ <li><a href="https://www.oxfordlearnersbookshelf.com/home/homePage.html" onclick="return ! window.open(this.href);">Oxford Learner&apos;s Bookshelf</a></li>
561
+ </ul>
562
+ </div>
563
+ </div>
564
+ <div class="responsive_footer_bottom">
565
+ <div class="responsive_center_on_smartphone">
566
+ <a href="http://global.oup.com/" onclick="return ! window.open(this.href);" class="oup-logo" title="Oxford University Press"><img src="http://www.oxfordlearnersdictionaries.com/external/images/footer/logo-oup.png" title="Oxford University Press"/></a>
567
+ <div class="responsive_footer_bottom_wrap">
568
+ <ul class='links'>
569
+ <li><a href="http://www.oxfordlearnersdictionaries.com/search_widget_info">Search Box</a></li>
570
+ <li><a href="http://www.oxfordlearnersdictionaries.com/browse/">Browse Dictionaries</a></li>
571
+ <li><a href="http://www.oxfordlearnersdictionaries.com/contact-us">Contact Us</a></li>
572
+ <li><a href="http://www.oxfordlearnersdictionaries.com/legal-notice">Legal Notice</a></li>
573
+ <li><a href="http://www.oxfordlearnersdictionaries.com/privacy">Privacy Policy</a></li>
574
+ <li><a href="http://global.oup.com/cookiepolicy">Cookie Policy</a></li>
575
+ <li><a href="http://www.oxfordlearnersdictionaries.com/terms-and-conditions">Terms & Conditions</a></li>
576
+ <li><a href="http://www.oxfordlearnersdictionaries.com/system-requirements">System Requirements</a></li>
577
+ <li><a href="https://elt.oup.com/accessibility" onclick="return ! window.open(this.href);">Accessibility</a></li>
578
+ </ul>
579
+ <p class="copyright">&copy; 2015 Oxford University Press</p>
580
+ </div>
581
+ <div class="versionSelector">
582
+ <select name="lang" id="headerVersion" title="Select language">
583
+ <option
584
+ selected="selected" name="uk"
585
+ value="http://www.oxfordlearnersdictionaries.com/definition/english/car.html">English (UK)</option>
586
+ <option
587
+ name="us"
588
+ value="http://www.oxfordlearnersdictionaries.com/us/definition/english/car.html">English (US)</option>
589
+ </select>
590
+ </div>
387
591
  </div>
592
+ </div>
388
593
 
389
- <div id="ox-footer" class="responsive_row">
390
- <div class="responsive_footer_left">
391
- <div class="ox-oupLogo responsive_footer_left_left"></div>
392
- <div class="versionSelector responsive_footer_left_right">
393
- <select name="lang" id="headerVersion" title="Select language">
394
-
395
-
396
- <option
397
- selected="selected" name="uk"
398
- value="http://www.oxfordlearnersdictionaries.com/definition/english/car">English (UK)</option>
399
-
400
-
401
- <option
402
- name="us"
403
- value="http://www.oxfordlearnersdictionaries.com/us/definition/english/car">English (US)</option>
404
-
405
-
406
- </select>
407
- </div>
408
- </div>
409
- <ul id="footlinks">
410
- <li>&copy; 2014 Oxford University Press</li>
411
- <li><a href="http://www.oxfordlearnersdictionaries.com/search_widget_info.html">Dictionary search for your site</a></li>
412
- <li><a href="http://elt.oup.com/" onclick="return ! window.open(this.href);">OUP English Language Teaching website</a></li>
413
- <li><a href="http://www.oxfordlearnersdictionaries.com/browse/">Browse Dictionaries</a></li>
414
- <li><a href="http://www.oxfordlearnersdictionaries.com/privacy.html">Privacy &amp; Legal notice</a></li>
415
- </ul>
594
+ </div>
416
595
  </div>
417
596
 
418
- </div>
419
- </div>
420
-
421
- <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/common.js?version=1.1.28"></script>
422
- <script language="javascript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/doubleclick.js?version=1.1.28"></script>
423
- <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/oxford.js?version=1.1.28"></script>
424
- <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/entry.js?version=1.1.28"></script>
425
- <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/jquery.lightbox-0.5.min.js?version=1.1.28"></script>
597
+
598
+
599
+ <script language="javascript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/doubleclick.js?version=1.4.0"></script>
600
+
601
+ <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/oxford.js?version=1.4.0"></script>
602
+ <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/entry.js?version=1.4.0"></script>
603
+ <script language="JavaScript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/jquery.lightbox-0.5.min.js?version=1.4.0"></script>
426
604
  <script language="javascript" type="text/javascript">
427
-
605
+
428
606
  $(document).ready(function() { setupDoubleClick('http://www.oxfordlearnersdictionaries.com/', 'english', false, 'main-container', null, null, null); });
429
607
  $('img.over').each(function(){
430
608
  var t=$(this);
431
609
  var src1= t.attr('src'); // initial src
432
610
  var newSrc = src1.substring(0, src1.lastIndexOf('.')); // let's get file name without extension
433
611
  t.hover(function(){
434
- $(this).attr('src', newSrc+ '-over.' + /[^.]+$/.exec(src1)); //last part is for extension
612
+ $(this).attr('src', newSrc+ '-over.' + /[^.]+$/.exec(src1)); //last part is for extension
435
613
  }, function(){
436
614
  $(this).attr('src', newSrc + '.' + /[^.]+$/.exec(src1)); //removing '-over' from the name
437
615
  });
@@ -439,7 +617,7 @@
439
617
  </script>
440
618
  <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
441
619
 
442
- <script language="javascript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/responsive.js?version=1.1.28"></script>
620
+ <script language="javascript" type="text/javascript" src="http://www.oxfordlearnersdictionaries.com/external/scripts/responsive.js?version=1.4.0"></script>
443
621
  <script>
444
622
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
445
623
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
@@ -457,26 +635,5 @@
457
635
  <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
458
636
  <noscript><img src="http://pixel.quantserve.com/pixel/p-cfSla1Cke_iBQ.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></noscript>
459
637
 
460
- <script type='text/javascript'>
461
- var smartphone = false;
462
- var tablet = false;
463
- var hd = false;
464
- try{
465
- var smartphone = window.matchMedia("(max-width: 761px)").matches;
466
- var tablet = window.matchMedia("(min-width: 762px) and (max-width: 928px)").matches;
467
- var hd = window.matchMedia("(min-width: 1220px)").matches;
468
- }catch(err){}
469
- var desktop = (!smartphone && !tablet && !hd);
470
- if(!smartphone){
471
- if(hd && true){
472
- $("#leaderboardHD").append("<div id='dfp_ad_Entry_728x90' style='width:728px; height:90px; margin-bottom:10px;'>")
473
- $('<script>googletag.cmd.push(function() {googletag.display("dfp_ad_Entry_728x90"); });</' + 'script>').appendTo("#dfp_ad_Entry_728x90")
474
- }
475
- else if (!(hd && true) || tablet && true || desktop && ad.desktop){
476
- $("#leaderboardOthers").append("<div id='dfp_ad_Entry_728x90' style='width:728px; height:90px; margin-bottom:10px;'>")
477
- $('<script>googletag.cmd.push(function() {googletag.display("dfp_ad_Entry_728x90"); });</' + 'script>').appendTo("#dfp_ad_Entry_728x90")
478
- }
479
- }
480
- </script>
481
- </body>
638
+ </body>
482
639
  </html>