-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
346 lines (332 loc) · 16.7 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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Adventure Website</title>
<!-- Added Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">
<img src="images/logo.svg" alt="Travel Adventure Logo">
</div>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="#">Tour Packages</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<a href="#" class="cta-button">Sign Up</a>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content"></div>
<h1>Enjoy in the best way!</h1>
<p>Enjoy our services for your trip anytime</p>
<!-- Search Form -->
<div class="search-form">
<ul class="form-tabs">
<li><a href="#" class="active">Public Tours</a></li>
<li><a href="#">Private Tours</a></li>
</ul>
<form>
<div class="form-group">
<i class="fas fa-users"></i>
<select>
<option value="people">Number of people</option>
</select>
</div>
<div class="form-group">
<i class="fas fa-calendar-alt"></i>
<input type="date" placeholder="Date">
</div>
<div class="form-group">
<i class="fas fa-clock"></i>
<input type="time" placeholder="Time">
</div>
<div class="form-group">
<i class="fas fa-map-marker-alt"></i>
<select>
<option value="tour">Tour</option>
</select>
</div>
<div class="form-group">
<i class="fas fa-bus"></i>
<select>
<option value="transportation">Transportation</option>
</select>
</div>
<button type="submit">Search</button>
</form>
</div>
</div>
</section>
<!-- Popular Destinations Section -->
<section class="popular-destinations">
<div class="container">
<h2>Explore Our Popular Destinations</h2>
<div class="card-container">
<div class="card">
<img src="images/popular_dest_1.svg" alt="Lucca Bike Tour">
<div class="card-content">
<h3>Lucca Bike Tour</h3>
<p>from<strong> 34 €</strong></p>
<p><i class="fas fa-calendar-alt"></i> Everyday <i class="fas fa-users"></i> 3-10pp</p>
<p>A tour of the city and its surroundings led by a professional guide.</p>
</div>
</div>
<div class="card">
<img src="images/popular_dest_2.svg" alt="Wine tasting in Tuscany">
<div class="card-content">
<h3>Wine tasting in Tuscany</h3>
<p>from<strong> 50 €</strong></p>
<p><i class="fas fa-calendar-alt"></i> Monday<i class="fas fa-users"></i> 10-30pp </p>
<p>The real magic ios here where you can enjoy the best Tuscan wine and eat...</p>
</div>
</div>
<div class="card">
<img src="images/popular_dest_3.svg" alt="Cinque Terre tour">
<div class="card-content">
<h3>Cinque Terre tour</h3>
<p>from<strong> 45 €</strong></p>
<p><i class="fas fa-calendar-alt"></i>To Be Decided<i class="fas fa-users"></i> 10-50pp </p>
<p>Visiting the 5 Terre is a must, and you can never go there enough</p>
</div>
</div>
<div class="card">
<img src="images/popular_dest_4.svg" alt="Sienna and Surroundings">
<div class="card-content">
<h3>Sienna and Surroundings</h3>
<p>from<strong> 60 €</strong></p>
<p><i class="fas fa-calendar-alt"></i>To Be Decided<i class="fas fa-users"></i> 5-10pp </p>
<p>Visit the beautiful Sienna and the cities that surrounds it to experience...</p>
</div>
</div>
</div>
</div>
</section>
<!-- Company Information Section -->
<section class="company-info">
<div class="info-container">
<img src="images/best_company01 (1).svg" alt="bestcompany">
<br><br><br><br>
<div class="welcome-to-site">
<h5>WELCOME TO OUR SITE!</h5>
<h2>We are the best company for your visit</h2>
<p> After decades of experience, and a whole life in Lucca, we offer you the most<br>
complete tourism service in the city. In addition to having bikes and rickshaws to<br>
have as much fun as you want, you have the choice of tour guides with whom to<br>
tour and drivers for your every need! We offer packages in the way that you get the<br>
most at the lowest price. Book with us and we will always be available for you!</p>
</div>
<div class="stats">
<div class="stat-item">
<h3>20+</h3>
<p>Years of Experience</p>
</div>
<div class="stat-item">
<h3>100+</h3>
<p>Happy customers</p>
</div>
<div class="stat-item">
<h3>15+</h3>
<p>Choice of Services</p>
</div>
<div class="stat-item">
<h3>10+</h3>
<p>Professional guides</p>
</div>
</div>
</div>
</section>
<!-- Special Offers Section -->
<div class="container"></div>
<section class="special-offers">
<div class="container">
<div class="orgoffer">
<h2>Get Special Offers for <br> Organizations</h2>
<p>Lorem Ipsum is simply dummy text of the printing and<br>
typesetting industry. Lorem Ipsum has been the<br>
industry's standard dummy text ever since the 1500s.</p>
<a href="#" class="cta-button">Contact Us</a>
</div>
<img src="images/special_offers01.svg" alt="specialoffers">
</div>
</section>
<!-- Bike and Rickshaw Rentals Section -->
<section class="rentals">
<div class="container">
<div class="rental-options">
<div class="rental-option">
<img src="images/services01.svg" alt="Bike Rental">
<h3>Bike and Rikshaw Rental</h3>
<p>Book your quality vehicle quickly for an hour or all the day!</p>
</div>
<div class="rental-option">
<img src="images/services02.svg" alt="Rickshaw Rental">
<h3>Guided tour of the countryside</h3>
<p>Live the real Lucchese experience by visiting the suburbs by bike!</p>
</div>
<div class="rental-option">
<img src="images/services03.svg" alt="Rickshaw Rental">
<h3>Taxi and NCC service</h3>
<p>Do you need not only a bike but also a driver? Then you have found the right place!</p>
</div>
<div class="rental-option">
<img src="images/services04.svg" alt="Rickshaw Rental">
<h3>Bus package</h3>
<p>Do you need not only a bike but also a driver? Then you have found the right place! </p>
</div>
</div>
</div>
</section>
<section class="book-now">
<div class="container">
<div class="form-container">
<div class="formtext">
<form>
<h2>Book Now Bike</h2>
<div class="form-group">
<label for="name">Name and Surname</label>
<input type="text" id="name" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="phone">Telephone Number</label>
<input type="tel" id="phone" required>
</div>
<div class="form-group">
<label for="service-type">Service Type</label>
<select id="service-type">
<option value="bike">Bike</option>
<option value="rickshaw">Rickshaw</option>
</select>
</div>
<div class="form-group">
<label for="date">Date</label>
<input type="date" id="date" required>
</div>
<div class="form-group">
<label for="duration">Time</label>
<input type="number" id="duration" required>
</div>
<button type="submit">Book Now</button>
</form>
</div>
<div class="bike-image">
<img src="images/bike picture (1).png" alt="Bike Image">
</div>
</div>
</div>
</section>
<!-- Most Popular Packages Section -->
<section class="popular-packages">
<div class="container">
<h2>Most Popular Packages</h2>
<div class="package-container">
<div class="package-card">
<img src="images/pop_package01.svg" alt="Package 1">
<h3>Bike/Rickshaw</h3>
<p>Escape the city for a rejuvenating weekend experience.</p>
<p>€<strong>10</strong>/day</p>
<p><i class="far fa-star"></i>Your bike for a day<br><i class="far fa-star"></i>City app<br><i class="far fa-star"></i>Discount on rickshaw<br><i class="far fa-star"></i>Guarenteed Support</p>
</div>
<div class="package-card">
<img src="images/pop_package02.svg" alt="Package 2">
<h3>Bike tours</h3>
<p>Experience thrills with our action-packed adventure tour.</p>
<p>€<strong>30</strong>/day</p>
<p><i class="far fa-star"></i>A mountain bike included<br><i class="far fa-star"></i>A guide for you<br><i class="far fa-star"></i>Bottle of water<br><i class="far fa-star"></i>Guaranteed support</p>
</div>
<div class="package-card">
<img src="images/pop_package03.svg" alt="Package 3">
<h3>Bus trips</h3>
<p>Immerse yourself in local culture with our guided tours.</p>
<p>€<strong>45</strong>/day</p>
<p><i class="far fa-star"></i>Park ticket<br><i class="far fa-star"></i>Return bus<br><i class="far fa-star"></i>Companion<br><i class="far fa-star"></i>Guaranteed support</p>
</div>
<div class="package-card">
<img src="images/pop_package04.svg" alt="Package 3">
<h3>transfer</h3>
<p>Immerse yourself in local culture with our guided tours.</p>
<p>€<strong>10</strong>/day</p>
<p><i class="far fa-star"></i>Personal Driver<br><i class="far fa-star"></i>Wherever you want<br><i class="far fa-star"></i>At the best price<br><i class="far fa-star"></i>Guaranteed support</p>
</div>
</div>
</div>
</section>
<!-- Customer Testimonials Section -->
<section class="testimonials">
<div class="container">
<h2>Happy Customers Say</h2>
<div class="testimonial-container">
<div class="testimonial">
<div class="leftquote"><i class="fas fa-quote-left"></i></div>
<p>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure"</p>
<p><strong>- Lyod Gomez</strong></p>
<div class="rightquote"><i class="fas fa-quote-right"></i></div>
</div>
<div class="testimonial">
<div class="leftquote"><i class="fas fa-quote-left"></i></div>
<p>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure"</p>
<p><strong>- Lyod Gomez</strong></p>
<div class="rightquote"><i class="fas fa-quote-right"></i></div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="container">
<div class="bottompart">
<nav>
<div class="logo1">
<img src="images/logo.svg" alt="Travel Adventure Logo">
</div>
<ul class="services">
<li><a href="#">Services</a></li>
<li><a href="#">Bike and Rickshaw Rental</a></li>
<li><a href="#">Guided Tours of Lucca</a></li>
<li><a href="#">Guided Bike Tour of Lucca</a></li>
<li><a href="#">Trip in the Tuscan Hills</a></li>
<li><a href="#">Transportation with Luxury Cars</a></li>
<li><a href="#">Wine Tours by Bus with Guide</a></li>
</ul>
<ul class="home-links">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<ul class="help-links">
<li><a href="#">Help</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
<ul class="contact-links">
<li><a href="#">Contacts</a></li>
<li><i class="fas fa-map-marker-alt"></i><a href="#">Address</a></li>
<li><i class="fas fa-phone"></i><a href="#">Phone Number</a></li>
<li><i class="fas fa-envelope"></i><a href="#">Email</a></li>
</ul>
<ul class="social-media">
<b>Social Media</b>
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
</ul>
</nav>
<div class="cpyrts"><p>copyrights © 2022 all rights reserved</p></div>
</div>
</div>
</footer>