-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
309 lines (229 loc) · 9.19 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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Showcase</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="image/favicon.jpg" type="image/x-icon">
</head>
<body>
<div class="scroll-up-btn"></div>
<!-- nav section start -->
<section>
<nav class="navbar">
<div class="max-width">
<div class="nav-content">
<img class="logo" src="image/logo1.jpg">
<ul class="menu">
<li><a href="#home" class="menu-btn">Home</a></li>
<li><a href="#specify" class="menu-btn">Specifications</a></li>
<li><a href="#reviews" class="menu-btn">Reviews</a></li>
<li><a href="#contact" class="menu-btn">Contact</a></li>
</ul>
</div>
<hr size="1px" width="95%" color="#bebaba">
<!-- <div class="menu-btn">
<i class="fas fa-bars"></i>
</div> -->
</div>
</nav>
</section>
<!-- home section start -->
<section class="home" id="home">
<div class="max-width">
<div class="home-content">
<div class="text-1">SPECIAL EDITION</div>
<div class="text-2">TATA HARRIER</div>
<div class="center">
<a href="#specify">EXPLORE MORE</a>
</div>
</div>
</div>
</section>
<!-- home2 section start -->
<section class="home2" id="home2">
<div class="max-width">
<div class="home2-content">
<div class="text-1">DISCOVER</div>
<div class="text-2">BLACK BADGE</div>
<!-- <div class="center2">
<a href="#video">VIEW COMPLETE VIDEO</a>
</div> -->
</div>
</div>
</section>
<!---Specifi section start-->
<div class="specify" id="specify">
<img src="image/car12.jpg" alt="#">
<div class="specify-content">
<div class="text-1">INDIAS SAFEST VEHICLE</div>
<div class="text-2">REMAINS A HARRIER</div>
<div class="text-3">SAY HELLO TO HARRIER</div>
<div class="text-4">INDIAS RANK 1 VEHICLE WITH 5-STAR RATING</div>
<div class="center2">
<a href="#contact">BUYNOW</a>
</div>
<div class="center2">
<a href="#contact">CONTACT</a>
</div>
</div>
</div>
<!-- Tab links -->
<section>
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'Engine')" id="defaultOpen">Engine</button>
<button class="tablinks" onclick="openCity(event, 'Breaks')">Breaks</button>
<button class="tablinks" onclick="openCity(event, 'Suspention')">Suspention</button>
<button class="tablinks" onclick="openCity(event, 'Transmission')">Transmission</button>
<button class="tablinks" onclick="openCity(event, 'Dimention')">Dimention</button>
<button class="tablinks" onclick="openCity(event, 'Tyers')">Tyers</button>
<button class="tablinks" onclick="openCity(event, 'Fule Tank')">Fule Tank</button>
</div>
<!-- Tab content -->
<div id="Engine" class="tabcontent">
<table>
<tr>
<th>Type</th>
<th>Kryotec 2.0 L Turbocharged Engine</th>
</tr>
<tr>
<td>Fule,Emission norm</td>
<td>Diesel BS6</td>
</tr>
<tr>
<td>Capacity,cylinders</td>
<td>1956 cc,IN-line 4-cylinders</td>
</tr>
<tr>
<td>Max Power:kW@r/min</td>
<td>125 kW(170 PS) @ 3750 rpm</td>
</tr>
<tr>
<td>Max Torque:kW@r/min</td>
<td>3500 Nm@1750-2500</td>
</tr>
</table>
</div>
<div id="Breaks" class="tabcontent">
<table>
<tr>
<td>Front/Rear</td>
<td>Disc/Drum</td>
</tr>
</table>
</div>
<div id="Suspention" class="tabcontent">
<table>
<tr>
<td>Front</td>
<td>Independent,LOWER wishbone,MCpherson Strut with Coil Spring & Anti Roll Bar</td>
</tr>
<tr>
<td>Rear</td>
<td>Semi independent Twist blase with Panhard Rod & Coil Spring</td>
</tr>
</table>
</div>
<div id="Transmission" class="tabcontent">
<table>
<tr>
<td>Type</td>
<td>6 Speed Automatic/6-Speed Manual</td>
</tr>
</table>
</div>
<div id="Dimention" class="tabcontent">
<table>
<tr>
<td>Lenght*Width*Height(mm)</td>
<td>4598*1894*1706(width without mirrors)</td>
</tr>
<tr>
<td>Wheelbase(mm)</td>
<td>2741</td>
</tr>
<tr>
<td>Boot Space(L)</td>
<td>425</td>
</tr>
</table>
</div>
<div id="Tyers" class="tabcontent">
<table>
<tr>
<td>Type</td>
<td>(XM,XM/XMA)235/70 r16 Steel
(XT,XZ/XZA,XZ+/XZA+/XZA+)235/65 R17 Alloys
</td>
</tr>
<tr>
<td>Spare</td>
<td>235/70 R16 Steel</td>
</tr>
</table>
</div>
<div id="Fule Tank" class="tabcontent">
<table>
<tr>
<td>Fuel Tank capacity(L)</td>
<td>50</td>
</tr>
</table>
</div>
</section>
<!-- video background -->
<video id="background-video" autoplay loop muted poster="image/car6.jpg">
<source src="tatavideo.mp4" type="video/mp4">
</video>
<h1>THIS IS TATA HARRIER.</h1>
<h2>How majestic.</h2>
<section class="review-section">
<div class="reviews" id="reviews">
<img src="image/review.jpg" alt="#" style="width:90px">
<p><span>Akash Shinde.</span> Student at MESCOE.</p>
<p>Awesome looks.Good interiors, Safety at its best. Good looking exterior, the performance also good looking to average. All-round Performer</p>
</div>
<div class="reviews">
<img src="image/review1.jpg" alt="#" style="width:90px">
<p><span >Rohit More.</span> Student at MESCOE.</p>
<p>Best build quality.This is the car which saves my dad's and brother life a car hit the tata harrier my car and the car roll 3 or 4 times god nd this car saves my family life thanks Tata thank so much all airbags are poped my dad is so so happy and they don't get any type of injury I just love this car safety and booked a new one</p>
</div>
<div class="reviews">
<img src="image/review2.jpg" alt="#" style="width:90px">
<p><span >Vishal Mohite.</span> Student at DYP.</p>
<p>Good car, good material quality. No front sensor, not an android in-built display. Hard clutch. Need to improve.</p>
</div>
<div class="reviews">
<img src="image/review4.jpg" alt="#" style="width:90px">
<p><span>Dhanush Shewale.</span> Student.</p>
<p>Best car stylish look, a great performance, many variants but the only one thing the top model price is too high for this Indian car
</p>
</div>
</section>
<!-- video background end -->
<!-- contact section start -->
<section class="contact-section">
<div class="contact" id="contact">
<form action="action_page.php">
<label for="name"> Name</label>
<input type="text" id="name" name="name" placeholder="Your name..">
<label for="email">Email</label>
<input type="text" id="email" name="lastname" placeholder="Your eamil id..">
<label for="contact">Contact</label>
<input type="text" id="contact" name="contact" placeholder="Your phone number..">
<label for="query">Query</label>
<textarea id="query" name="query" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d60531.18316186194!2d73.8310944182851!3d18.519909663713!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc2bf0f7bebd961%3A0xc4d5b6da2b3d896d!2sTata%20Motors!5e0!3m2!1sen!2sin!4v1644407516485!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</section>
<!-- contact section end -->
<footer>
<span>Created By <a href="#">Rohit</a> | <span class="far fa-copyright"></span> All rights reserved.</span>
</footer>
<script src="script.js"></script>
</body>
</html>