-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
233 lines (208 loc) · 11.1 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Electric Cars, Solar & Clean Energy | Tesla</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- font-awesome cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- google fonts cdn -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./css/style.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light px-3">
<div class="container-fluid">
<!-- Left Section: Brand -->
<a class="navbar-brand" href="./index.html">
<img src="./images/logo.png" alt="" width="120px">
</a>
<!-- Center Section: Navbar links -->
<div class="collapse navbar-collapse justify-content-center" id="navbarTogglerDemo01">
<ul class="navbar-nav mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./Vehicles.html">Vehicles</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="./Energy.html">Energy</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="./chargers.html">Charging</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="./Discover.html">Discover</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="./shop.html">Shop</a>
</li>
</ul>
</div>
<!-- Right Section: Search form -->
<div class="d-flex gap-2 icon_div">
<i class="fa-solid fa-question"></i>
<i class="fa-solid fa-globe"></i>
<i class="fa-solid fa-user"></i>
</div>
<!-- Navbar Toggler for small screens -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo01"
aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</nav>
<header class="py-5">
<div class="px-4 py-5 text-center">
<h1 class="display-5 fw-normal">Model 3</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">$7,500 Federal Tax Credit Available<sup>1</sup> <br>
From $33,990 After Est. Savings<sup>2</sup></p>
</div>
</div>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center header-btns">
<button type="button" class="btn bg-white text-dark btn-lg px-4 gap-2">Order Now</button>
<button type="button" class="btn bg-dark text-white btn-outline-secondary btn-lg px-4">Secondary</button>
</div>
</header>
<section id="sec1" data-aos="zoom-in" data-aos-delay="150" data-aos-duration="1500">
<div class="px-4 py-5 text-center">
<h1 class="display-5 fw-normal">Model Y</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">From $31,490<sup>3</sup><br>
After Est. Savings</p>
</div>
</div>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center header-btns">
<button type="button" class="btn bg-white text-dark btn-lg px-4 gap-2">Order Now</button>
<button type="button" class="btn bg-dark text-white btn-outline-secondary btn-lg px-4">Secondary</button>
</div>
</section>
<section id="sec2"data-aos="zoom-in" data-aos-delay="150" data-aos-duration="1500">
<div class="px-4 py-5 text-center">
<h1 class="display-5 fw-normal">Model X</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">From $63,990<sup>4</sup><br>
After Est. Savings</p>
</div>
</div>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center header-btns">
<button type="button" class="btn bg-white text-dark btn-lg px-4 gap-2">Order Now</button>
<button type="button" class="btn bg-dark text-white btn-outline-secondary btn-lg px-4">Secondary</button>
</div>
</section>
<section id="sec3" data-aos="zoom-in" data-aos-delay="150" data-aos-duration="1500">
<div class="px-4 py-5 text-center">
<h1 class="display-5 fw-normal">Model S</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">From $66,490<sup>5</sup><br>
After Est. Savings</p>
</div>
</div>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center header-btns">
<button type="button" class="btn bg-white text-dark btn-lg px-4 gap-2">Order Now</button>
<button type="button" class="btn bg-dark text-white btn-outline-secondary btn-lg px-4">Secondary</button>
</div>
</section>
<section id="sec4"data-aos="zoom-in" data-aos-delay="150" data-aos-duration="1500">
<div class="px-4 py-5 text-center">
<h1 class="display-5 fw-normal">Model S</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">From $66,490<sup>5</sup><br>
After Est. Savings</p>
</div>
</div>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center header-btns">
<button type="button" class="btn bg-white text-dark btn-lg px-4 gap-2">Order Now</button>
<button type="button" class="btn bg-dark text-white btn-outline-secondary btn-lg px-4">Secondary</button>
</div>
</section>
<section id="sec5" data-aos="zoom-in" data-aos-delay="150" data-aos-duration="1500">
<div class="px-4 py-5 text-center">
<h1 class="display-5 fw-normal">Solar Panels</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4"><a href="" class="text-white">Schedule a Virtual Consultation</a></p>
</div>
</div>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center header-btns">
<button type="button" class="btn bg-white text-dark btn-lg px-4 gap-2">Order Now</button>
<button type="button" class="btn bg-dark text-white btn-outline-secondary btn-lg px-4">Secondary</button>
</div>
</section>
<section id="sec6" data-aos="zoom-in" data-aos-delay="150" data-aos-duration="1500">
<div class="px-4 py-5 text-center">
<h1 class="display-5 fw-normal">Solar Roof</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4 fs-6">Produce Clean Energy From Your Roof</p>
</div>
</div>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center header-btns">
<button type="button" class="btn bg-white text-dark btn-lg px-4 gap-2">Order Now</button>
<button type="button" class="btn bg-dark text-white btn-outline-secondary btn-lg px-4">Secondary</button>
</div>
</section>
<section id="sec7" data-aos="zoom-in" data-aos-delay="150" data-aos-duration="1500">
<div class="px-4 py-5 text-center">
<h1 class="display-5 fw-normal">Powerwall</h1>
</div>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center header-btns">
<button type="button" class="btn bg-white text-dark btn-lg px-4 gap-2">Order Now</button>
<button type="button" class="btn bg-dark text-white btn-outline-secondary btn-lg px-4">Secondary</button>
</div>
</section>
<section id="sec8" data-aos="zoom-in" data-aos-delay="150" data-aos-duration="1500">
<div class="px-4 py-5 text-center">
<h1 class="display-5 fw-normal">Accessories</h1>
</div>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center header-btns">
<button type="button" class="btn bg-white text-dark btn-lg px-4 gap-2">Order Now</button>
</div>
</section>
<footer class="bg-dark" data-aos="zoom-in" data-aos-delay="150" data-aos-duration="1500">
<div class="container text-center text-white py-4">
<p> 1 $7,500 Federal Tax Credit available for eligible <br> buyers and subject to MSRP caps. Model 3 <br>
Rear-Wheel Drive not eligible. </p>
<p> 2 Starting price of Model 3 Rear-Wheel Drive <br> before estimated savings is $38,990, excluding taxes and
<br> fees and is subject to change. Estimated savings includes $5,000 in gas <br> savings estimated over five
years. </p>
<p> 3 Monthly lease payment is $449 before estimated gas <br> savings of $100 per month and based on purchase
price <br> of $44,990, excluding taxes and fees and is subject to change. Lease <br> available in select states,
requires $2,999 down and is subject to credit approval. <br> No security deposit required. Additional terms and
conditions apply. </p>
<p> 4 Price before estimated savings is $77,990, excluding <br> taxes and fees. Subject to change. Estimated
savings includes <br> $6,500 in gas savings estimated over five years, the $7,500 Federal <br> Tax Credit and
state incentives, available to eligible buyers and <br> subject to MSRP caps. Terms apply. </p>
<p> 5 Price before estimated savings is $72,990, excluding taxes <br> and fees. Subject to change. Estimated
savings includes <br> $6,500 in gas savings estimated over five years and <br>state incentives, available to
eligible buyers and subject to MSRP caps. Terms apply. </p>
</div>
<div class="container text-center py-4">
<a href="" class="text-decoration-none text-white px-2"> Tesla © 2024 </a>
<a href="" class="text-decoration-none text-white px-2"> Privacy & Legal </a>
<a href="" class="text-decoration-none text-white px-2"> Vehicle Recalls </a>
<a href="" class="text-decoration-none text-white px-2"> Contact </a>
<a href="" class="text-decoration-none text-white px-2"> News </a>
<a href="" class="text-decoration-none text-white px-2"> Get Updates </a>
<a href="" class="text-decoration-none text-white px-2"> Locations </a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>