forked from ammarlodhi255/travel-and-tour-agency-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
338 lines (325 loc) · 12.8 KB
/
home.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
<!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" />
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin="anonymous"
/>
<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=Open+Sans:wght@300&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
/>
<link
rel="stylesheet"
href="./bootstrap-5.0.2-dist/css/bootstrap.min.css"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./home.css" />
<!-- JavaScript Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"
></script>
<script
src="./bootstrap-5.0.2-dist/js/bootstrap.min.js"
crossorigin="anonymous"
></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<!-- Title -->
<title>Travel Website Homepage</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-md navbar-dark">
<div class="container nav-contents">
<a href="" class="navbar-brand"><b>World Dive</b></a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#bar"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="bar">
<ul class="navbar-nav nav-items ms-auto">
<li class="nav-item">
<a href="./home.html" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="./services.html" class="nav-link">Services</a>
</li>
<li class="nav-item">
<a href="./packages.html" class="nav-link">Packages</a>
</li>
<li class="nav-item">
<a href="./gallery.html" class="nav-link">Gallery</a>
</li>
<li class="nav-item">
<a href="./about.html" class="nav-link about">About</a>
</li>
<li class="nav-item">
<a href="#login" class="nav-link login">Login</a>
</li>
<li class="nav-item">
<a href="#signup" class="nav-link signup">Sign Up</a>
</li>
</ul>
</div>
</div>
</nav>
<div
id="carouselExampleControls"
class="my-carousel carousel slide"
data-bs-ride="carousel"
data-interval="100"
>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="https://images.unsplash.com/photo-1519055676067-4f45655f6f4a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80"
class="d-block w-100 imgCarousel"
alt="..."
/>
</div>
<div class="carousel-item item-1">
<img
src="https://images.unsplash.com/photo-1544220830-7da42df1ff8d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80"
class="d-block w-100 imgCarousel"
alt="..."
/>
</div>
<div class="carousel-item item-2">
<img
src="https://images.unsplash.com/photo-1519944734258-61d6d3e542f0?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80"
class="d-block w-100 imgCarousel"
alt="..."
/>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- Navbar Ends-->
<!-- Search -->
<section class="text-light p-5 bg-dark">
<div class="container">
<div class="d-md-flex justify-content-between align-items-center">
<h3>Search for Packages</h3>
<div class="input-group mb-3">
<input
type="text"
class="form-control city-search"
placeholder="Search Country/City"
id="searchText"
/>
<button
class="btn btn-outline-secondary text-light"
type="button"
id="searchBtn"
>
<div class="d-md-flex justify-content-between align-items-center">
<div class="mx-2">Search</div>
<div class="img"></div>
</div>
</button>
</div>
</div>
</div>
</section>
<!-- Body Section -->
<section class="main-section">
<!-- Services Section -->
<div class="section p-5">
<div class="container text-center mb-3">
<div class="row justify-content-center">
<div class="col col-12 services-text">OUR SERVICES</div>
</div>
</div>
<div class="container">
<div class="row text-center justify-content-between">
<div class="col-md">
<div class="card service-card">
<div class="card-body text-center">
<i class="fas fa-hiking" style="font-size: 50px"></i>
<h4 class="card-title">
<a href="./services.html#camp">Camping</a>
</h4>
</div>
</div>
</div>
<div class="col-md">
<div class="card service-card">
<div class="card-body text-center">
<i class="fas fa-map-marked-alt" style="font-size: 50px"></i>
<h4 class="card-title">
<a href="./services.html#track">Tracking</a>
</h4>
</div>
</div>
</div>
<div class="col-md">
<div class="card service-card">
<div class="card-body text-center">
<i class="fas fa-swimmer" style="font-size: 50px"></i>
<h4 class="card-title">
<a href="./services.html#activity">Fun Activities</a>
</h4>
</div>
</div>
</div>
<div class="col-md">
<div class="card service-card">
<div class="card-body text-center">
<i class="fa-solid fa-signs-post" style="font-size: 50px"></i>
<h4 class="card-title">
<a href="./services.html#tour">Tour Guide</a>
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Packages -->
<section class="p-5">
<div class="container text-center mb-3">
<div class="row justify-content-center">
<div class="col col-12 packages-text">BEST PACKAGES</div>
</div>
</div>
<div class="container">
<div class="row text-center justify-content-between g-4">
<div class="col-md">
<div class="card bg-light text-dark package">
<img
src="https://tourmypakistan.com.pk/wp-content/uploads/2019/01/Hunza-Serena-Inn-photos-Exterior-Hotel-information-26.jpeg"
class="card-img-top"
/>
<div class="card-body text-center">
<h5 class="card-title">Hunza Serena Inn</h5>
<p class="card-text">
Take a first stop in this luminous and wonderful hotel with
your loved ones. Serena Altit Fort Residence is a unique
accommodation in Hunza Valley that will immerse you into the
sights, sounds, tastes and history of Hunza, whilst offering
an enchanting rendezvous with Nature. Situated at the
footsteps of the 1100 years old Altit Fort, the Residence is
surrounded by the enchanting Royal Garden and the medieval
village of Altit-Khun.
</p>
<a href="#" class="btn btn-book">Book Now</a>
</div>
</div>
</div>
<div class="col-md">
<div class="card bg-light text-dark package">
<img
src="https://travelfreak.com/wp-content/uploads/2018/10/north-shore-oahu.jpg"
class="card-img-top"
/>
<div class="card-body text-center">
<h5 class="card-title">North Shore Tour</h5>
<p class="card-text">
Take your friends to this once in a life time journey. Skip
the hassle of renting a car and see the highlights of Oahu
North Shore from the comfort of a minibus or van. Along the
way, a guide keeps you entertained and shares details about
the island that you would likely miss if traveling on your
own. At each stop, you can enjoy free time to swim, shop,
paddleboard/kayak or do an optional waterfall hike while
getting to know the island.
</p>
<a href="#" class="btn btn-book">Book Now</a>
</div>
</div>
</div>
<div class="col-md">
<div class="card bg-light text-dark package">
<img
src="https://static.independent.co.uk/2022/06/14/11/1.%20Amsterdam%20Open%20Boat%20Canal%20Cruise%20-%20Live%20Guide%20-%20from%20Anne%20Frank%20House%203.jpeg?width=1200"
class="card-img-top"
/>
<div class="card-body text-center">
<h5 class="card-title">Amsterdam Open Boat Canal Cruise</h5>
<p class="card-text">
Experience the beauty of Amsterdams canals by going on this
scenic cruise. Pass by Anne Frank House, the Jordaan, the
Houseboat Museum, Leiden Square, Rijksmuseum, De Duif and
much more.Experience the beauty of Amsterdams canals by
going on this scenic cruise. Pass by Anne Frank House, the
Jordaan, Leiden Square, Rijksmuseum, De Duif and much more.
</p>
<a href="#" class="btn btn-book">Book Now</a>
</div>
</div>
</div>
</div>
</div>
<div class="center-div">
<br /><br />
<a href="./packages.html" class="btn btn-book">Explore More</a>
</div>
</section>
<!-- End Packages -->
</section>
<!-- End Body Section -->
<!-- FOOTER -->
<section class="footer">
<div class="container box-container">
<div class="row">
<div class="col col-4 box">
<h3>Contact Us</h3>
<a href="#"> <i class="fas fa-phone"></i> +333-2323-730 </a>
<a href="#"> <i class="fas fa-phone"></i> +567-695-765 </a>
<a href="#">
<i class="fas fa-envelope"></i> worlddive@gmail.com
</a>
<a href="#"> <i class="fas fa-map"></i> Sukkur, Pakistan </a>
</div>
<div class="col-4 box">
<h3>Socials</h3>
<a href="#"> <i class="fab fa-facebook-f"></i> Facebook </a>
<a href="#"> <i class="fab fa-twitter"></i> Twitter </a>
<a href="#"> <i class="fab fa-instagram"></i> Instagram </a>
<a href="#"> <i class="fab fa-linkedin"></i> Linkedin </a>
</div>
<div class="col-4">
<img src="./Travel_fall_in_love_and_be_happy_6210.svg" alt="" />
</div>
</div>
</div>
</section>
<script type="text/javascript" src="./index.js"></script>
<script type="text/javascript" src="./search.js"></script>
</body>
</html>