-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
296 lines (288 loc) · 12.9 KB
/
Copy pathindex.html
File metadata and controls
296 lines (288 loc) · 12.9 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DriveEasy - Car Rental Service</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<!-- Header -->
<header class="header">
<nav class="navbar">
<div class="nav-container">
<div class="logo">
<i class="fas fa-car"></i>
<span>DriveEasy</span>
</div>
<ul class="nav-menu">
<li><a href="#home">Home</a></li>
<li><a href="#cars">Cars</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-content">
<h1>Premium Car Rental Service</h1>
<p>Experience the freedom of the road with our premium fleet of vehicles</p>
<a href="#cars" class="cta-button">Rent Now</a>
</div>
<div class="hero-image">
<img src="primium1.jpg" alt="Premium Car" id="hero-car">
</div>
</section>
<!-- Booking Form -->
<section class="booking-section">
<div class="container">
<h2>Quick Booking</h2>
<form class="booking-form" id="bookingForm">
<div class="form-group">
<label for="pickup-location">Pick-up Location</label>
<select id="pickup-location" required>
<option value="">Select Location</option>
<option value="airport">Airport</option>
<option value="downtown">Downtown</option>
<option value="station">Train Station</option>
</select>
</div>
<div class="form-group">
<label for="pickup-date">Pick-up Date</label>
<input type="date" id="pickup-date" required>
</div>
<div class="form-group">
<label for="return-date">Return Date</label>
<input type="date" id="return-date" required>
</div>
<div class="form-group">
<label for="car-type">Car Type</label>
<select id="car-type" required>
<option value="">Select Car Type</option>
<option value="economy">Economy</option>
<option value="compact">Compact</option>
<option value="luxury">Luxury</option>
<option value="suv">SUV</option>
</select>
</div>
<button type="submit" class="search-btn">Search Cars</button>
</form>
</div>
</section>
<!-- Cars Section -->
<section id="cars" class="cars-section">
<div class="container">
<h2>Our Fleet</h2>
<div class="cars-grid">
<div class="car-card">
<img src="eco.jpg" alt="Economy Car">
<div class="car-info">
<h3>Economy Car</h3>
<p>Perfect for city driving</p>
<div class="features">
<span><i class="fas fa-users"></i> 4 Seats</span>
<span><i class="fas fa-cog"></i> Manual</span>
<span><i class="fas fa-gas-pump"></i> Petrol</span>
</div>
<div class="price">2000 RS/day</div>
<button class="rent-btn" onclick="rentCar('Economy Car', 2000)">Rent Now</button>
</div>
</div>
<div class="car-card">
<img src="compact.jpg" alt="Compact Car">
<div class="car-info">
<h3>Compact Car</h3>
<p>Comfortable and efficient</p>
<div class="features">
<span><i class="fas fa-users"></i> 5 Seats</span>
<span><i class="fas fa-cog"></i> Automatic</span>
<span><i class="fas fa-gas-pump"></i> Petrol</span>
</div>
<div class="price">2500 RS/day</div>
<button class="rent-btn" onclick="rentCar('Compact Car', 2500)">Rent Now</button>
</div>
</div>
<div class="car-card">
<img src="luxury.jpg" alt="Luxury Car">
<div class="car-info">
<h3>Luxury Car</h3>
<p>Premium comfort and style</p>
<div class="features">
<span><i class="fas fa-users"></i> 4 Seats</span>
<span><i class="fas fa-cog"></i> Automatic</span>
<span><i class="fas fa-gas-pump"></i> Hybrid</span>
</div>
<div class="price">6500 RS/day</div>
<button class="rent-btn" onclick="rentCar('Luxury Car', 6500)">Rent Now</button>
</div>
</div>
<div class="car-card">
<img src="suv1.jpg" alt="SUV">
<div class="car-info">
<h3>SUV</h3>
<p>Spacious family vehicle</p>
<div class="features">
<span><i class="fas fa-users"></i> 7 Seats</span>
<span><i class="fas fa-cog"></i> Automatic</span>
<span><i class="fas fa-gas-pump"></i> Diesel</span>
</div>
<div class="price">3000 RS/day</div>
<button class="rent-btn" onclick="rentCar('SUV', 3000)">Rent Now</button>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="services-section">
<div class="container">
<h2>Our Services</h2>
<div class="services-grid">
<div class="service-card">
<i class="fas fa-clock"></i>
<h3>24/7 Support</h3>
<p>Round-the-clock customer support for your convenience</p>
</div>
<div class="service-card">
<i class="fas fa-map-marker-alt"></i>
<h3>Free Pickup & Drop</h3>
<p>Complimentary pickup and drop-off service</p>
</div>
<div class="service-card">
<i class="fas fa-shield-alt"></i>
<h3>Insurance Included</h3>
<p>Comprehensive insurance coverage included</p>
</div>
<div class="service-card">
<i class="fas fa-tools"></i>
<h3>Maintenance</h3>
<p>Regular maintenance and roadside assistance</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about-section">
<div class="container">
<div class="about-content">
<div class="about-text">
<h2>About DriveEasy</h2>
<p>With over 10 years of experience in the car rental industry, DriveEasy has been providing reliable and affordable transportation solutions to thousands of customers.</p>
<p>Our mission is to make car rental simple, convenient, and accessible to everyone. We maintain a modern fleet of well-maintained vehicles to ensure your safety and comfort.</p>
<div class="stats">
<div class="stat">
<h3>10000+</h3>
<p>Happy Customers</p>
</div>
<div class="stat">
<h3>500+</h3>
<p>Cars Available</p>
</div>
<div class="stat">
<h3>50+</h3>
<p>Locations</p>
</div>
</div>
</div>
<div class="about-image">
<img src="about us.jpg" alt="About Us">
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<div class="container">
<h2>Contact Us</h2>
<div class="contact-content">
<div class="contact-info">
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<div>
<h3>Address</h3>
<p>Downtown , Kolhapur</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-phone"></i>
<div>
<h3>Phone</h3>
<p>+91 (0231) 123-4567</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-envelope"></i>
<div>
<h3>Email</h3>
<p>info@driveeasy.com</p>
</div>
</div>
</div>
<form class="contact-form" id="contactForm">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="logo">
<i class="fas fa-car"></i>
<span>DriveEasy</span>
</div>
<p>Your trusted partner for premium car rental services.</p>
<div class="social-links">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#cars">Cars</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Services</h3>
<ul>
<li><a href="#">Car Rental</a></li>
<li><a href="#">Long Term Rental</a></li>
<li><a href="#">Airport Transfer</a></li>
<li><a href="#">Corporate Rental</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact Info</h3>
<p><i class="fas fa-phone"></i> +91 (0231) 123-4567</p>
<p><i class="fas fa-envelope"></i> info@driveeasy.com</p>
<p><i class="fas fa-map-marker-alt"></i> Kolhapur</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 DriveEasy. All rights reserved.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>