-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·179 lines (166 loc) · 4.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Tesla Model S 85D Information Page</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<div class="header-container">
<header class="wrapper clearfix">
<h1 class="title"><img src="img/tesla.svg" height="28px"> Model S <img src="img/85d.svg" height="28px"></h1>
<nav class="car-name">
Quicksilver
</nav>
</header>
</div>
<div class="main-container">
<div class="main wrapper clearfix">
<article>
<section>
<h1>High Performance Sedan</h1>
<p>Accelerates from 0-60 in around
<strong>4s</strong>, while making almost no noise, and burning no fuel.</p>
<p>At the same time, can seat 5 adults, with an option for rear-facing jumpseats for children, pushing the capacity to 7 people.</p>
</section>
<section>
<h1>Long Distance-Ready</h1>
<p>Tesla's
<strong>Supercharger</strong> network makes it easy to travel across the country. We've already made several trips to Southern Michigan and Atlanta, GA without issue.
</p>
<p>Because there's no engine, and a huge trunk, the Model S has as much storage as many small SUVs</p>
</section>
<section>
<h1>Future Tech, Today</h1>
<p><strong>Autopilot</strong> enables the car to
<em>nearly</em> drive itself on highways, handling the acceleration, braking, lane keeping, keeping a safe distance, and even avoiding other drivers.
</p>
<p>The 17" Touchscreen provides access to everything on the vehicle easily, while enabling new features through over-the-air updates.</p>
</section>
<section>
<h1>Performance Model Details</h1>
<p>The recently released
<em>P100D</em> is now the third fastest accelerating production car ever produced, hitting 0-60 in
<strong>2.5s</strong>, accelerating at over 1.1Gs.</p>
</section>
</article>
<aside>
<h3>Specs</h3>
<table class="specs">
<tbody>
<tr>
<th colspan="2"><h4>Performance</h4></th>
</tr>
<tr>
<th>0-60 mph</th>
<td>4.0s</td>
</tr>
<tr>
<th>1/4 mile</th>
<td>12.4s @ 107 mph</td>
</tr>
<tr>
<th>Top Speed</th>
<td>155 mph</td>
</tr>
<tr>
<th colspan="2"><h4>Energy Usage</h4></th>
</tr>
<tr>
<th>Range</th>
<td>270 Miles</td>
</tr>
<tr>
<th>EPA city/highway</th>
<td>95/106 MPGe</td>
</tr>
<tr>
<th>At-Home Charging</th>
<td>Up to 30 miles/hour</td>
</tr>
<tr>
<th>SuperCharging</th>
<td>Up to 170 miles in 30 min</td>
</tr>
<tr>
<th colspan="2"><h4>Power Train</h4></th>
</tr>
<tr>
<th>Motor</th>
<td>Dual Electric motors</td>
</tr>
<tr>
<th>Power</th>
<td>518 hp / 386 kW</td>
</tr>
<tr>
<th>Max Torque</th>
<td>485 lb-ft @ 0 rpm</td>
</tr>
<tr>
<th>Transmission</th>
<td>Single-speed fixed-gear</td>
</tr>
<tr>
<th>Battery</th>
<td>85 kWh<br>7,104 Li Ion Cells, arranged in 16 packs of 444 each</td>
</tr>
<tr>
<th colspan="2"><h4>Features</h4></th>
</tr>
<tr>
<td colspan="2">
<table class="features">
<tr>
<td>Autopilot Driver Assistance</td>
<td>Traffic-Aware Cruise Control</td>
</tr>
<tr>
<td>Summon, self-parking & more</td>
<td>Automatic Parking</td>
</tr>
<tr>
<td>Customizable Instrument Panel</td>
<td>17" Center Console Display</td>
</tr>
<tr>
<td>All-glass panoramic sunroof</td>
<td>HD back up camera</td>
</tr>
<tr>
<td>Automatic Unlock</td>
<td>Automatic Wipers</td>
</tr>
<tr>
<td>Automatic Headlamps</td>
<td>Automatic High Beams</td>
</tr>
</table>
</td>
</tr>
<tr>
<th colspan="2"><h4>Miscellaneous</h4></th>
</tr>
<tr>
<th>Safety</th>
<td>★★★★★ NHTSA & Euro NCAP<br>Highest rating possible in all categories</td>
</tr>
<tr>
<th>Warranty</th>
<td>4 Years / 50,000 miles bumper-to-bumper<br>
8 Years / Unlimited miles powertrain
</td>
</tr>
</tbody>
</table>
</aside>
</div> <!-- #main -->
</div> <!-- #main-container -->
<script src="js/main.js"></script>
</body>
</html>