-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (116 loc) · 3.9 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
<!doctype HTML>
<html>
<head>
<title>Tesla</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Styles -->
<link rel="stylesheet" href="assets/css/style.min.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- Scripts -->
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/ui.js"></script>
</head>
<body>
<!-- #header -->
<div id="header">
<div class="container">
<!-- .logo -->
<div class="logo">
<h1><a href="#" title="Tesla">Tesla</a></h1>
</div>
<!-- END .logo -->
<!-- .nav -->
<div class="nav">
<ul>
<li><a href="#" title="Order">Order</a></li>
<li><a href="#" title="Test Drive">Test Drive</a></li>
<li><a href="#" title="Charging">Charging</a></li>
<li><a href="#" title="Gallery">Gallery</a></li>
<li><a href="#" title="Videos">Videos</a></li>
</ul>
</div>
<!-- END .nav -->
<!-- .mobile_button -->
<div class="mobile_button"></div>
<!-- END .mobile_button -->
</div>
</div>
<!-- END #header -->
<!-- #content -->
<div id="content">
<!-- .slider -->
<div class="slider">
<!-- .slider_container -->
<div class="slider_container">
<div class="container">
<!-- .slide -->
<div class="slide">
<div class="slide_content">
<h2>Tesla Model S</h2>
<p>The Tesla Model S is a full-sized electric five-door, luxury liftback, produced by Tesla Motors. Since its introduction in June 2012 it has achieved rapidly growing sales, particularly in Norway and California.</p>
<a href="#" title="Test Drive" class="button">Test Drive</a>
</div>
<img src="images/tesla-s.png" alt="Tesla Model S">
<div class="slide_footer">
<div class="widget seats">
<h2>5+2 <span>Available Seats</span></h2>
</div>
<div class="widget acceleration">
<h2>3.2<small>sec</small> <span>0-60 Max Acceleration</span></h2>
</div>
<div class="widget range">
<h2>275<small>mi</small> <span>Range at 65 MPH</span></h2>
</div>
</div>
</div>
<!-- END .slide -->
</div>
</div>
<!-- END .slider_container -->
</div>
<!-- END .slider -->
<!-- .features -->
<div class="features">
<div class="container full">
<div class="features_row">
<div class="text">
<h3>Carbon Fiber Spoiler</h3>
<p>Beginning with vehicles manufactured in late September 2014, all new Model S's come equipped with a camera mounted at the top of the windshield, forward looking radar in the lower grill, and ultrasonic sonar sensors in the front and rear bumpers that provide a 360-degree buffer zone around the car. </p>
</div>
<div class="picture">
<img src="images/carbonfiber.jpg" alt="Carbon Fiber Spoiler">
</div>
</div>
<div class="features_row">
<div class="picture">
<img src="images/interior.jpg" alt="Carbon Fiber Spoiler">
</div>
<div class="text">
<h3>Premium Interior</h3>
<p>The instrument panel is a 12.3 in (31 cm) LCD display that indicates speed, power usage, charge level, estimated range and active gear. The gearbox can be set to Drive, Neutral, Reverse and Park.</p>
</div>
</div>
</div>
</div>
<!-- END .features -->
</div>
<!-- END #content -->
<!-- #footer -->
<div id="footer">
<div class="join">
<div class="container">
<a href="#" title="Join us to test drive" class="button">join us to test drive</a>
<p>* All guests who wish to test drive the new Tesla Model S will be subject to a credit check</p>
</div>
</div>
<div class="footerlogo">
<div class="container">
<a href="#" title="Tesla">Tesla</a>
</div>
</div>
</div>
<!-- END #footer -->
</body>
</html>