-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
305 lines (287 loc) · 12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adventure 🕊</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/responsive.css" />
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png" />
<!--
- favicon
-->
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%2210 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>🪂</text></svg>">
<link rel="manifest" href="/site.webmanifest" />
</head>
<body
onload='if (window.location.href.substr(window.location.href.length - 6) == "#about") { introAboutLogoTransition(); }'>
<!--navbar-->
<nav class="navbar glass" style="height: 70px">
<span><a href="#home" style="display: flex; align-items: center"><img class="img2" src="./img/mountain.png"
width="40" style="margin: -25px -10px -25px -20px" />
<h1 class="logo"> ADVENTURE</h1>
</a></span>
<ul class="nav-links">
<li>
<a href="#home" id="pri" class="active cir_border">Home</a>
</li>
<li><a href="#events" id="sec" class="cir_border">Events</a></li>
<li>
<a href="#explore" id="tri" class="cir_border">Explore</a>
</li>
<li>
<a href="#tours" id="quad" class="cir_border">Tours</a>
</li>
<li><a href="#about" id="quint" class="cir_border">About</a></li>
<li>
<a href="#contact" id="hept" class="cir_border">Contact</a>
</li>
<li>
<div>
<input type="checkbox" class="checkbox dark" id="checkbox" />
<label for="checkbox" class="label">
<i class="fa fa-moon-o"></i>
<i class="fa fa-sun-o"></i>
<div class="ball"></div>
</label>
</div>
</li>
</ul>
<img src="./img/menu-btn.png" alt="" class="menu-btn" />
</nav>
<!--navbar-->
<header id="home">
<div class="header-content">
<h2 id="quote">Explore the colourful World</h2>
<div class="line"></div>
<h1>A WONDERFUL GIFT</h1>
<a href="#about" class="ctn"
onclick='removeall(); $("#quad").css("border", "2px solid whitesmoke"); $("#quad").css("border-radius", "20px");'>Learn
more</a>
</div>
</header>
<!--Events-->
<section class="events" id="events">
<div class="container">
<div class="title">
<h1 class="dark">Upcoming Events</h1>
<div class="line"></div>
</div>
<div class="row">
<article class="card col">
<img class="card-img" src="./img/img1.jfif" />
<h4 class="dark">Everest camp trek</h4>
<p class="font-color">
Everest base camp trek is without a doubt, one of
the most renowned travel destinations in the world.
</p>
<a href="#" class="ctn">All Details</a>
</article>
<article class="card col">
<img src="./img/img2.jfif" />
<h4 class="dark">Walking holidays</h4>
<p class="font-color">
Join small guided group walks, enjoy a challenging
trek, or a luxury private guided walk which can be
made especially for you.
</p>
<a href="#" class="ctn">All Details</a>
</article>
<article class="card col">
<img src="./img/img3.png" />
<h4 class="dark">Andaman Beaches</h4>
<p class="font-color">
Diving in Andaman Beaches is exceptional. The costal
belt surroundings is one of the richest coral reef
ecosystems in the world.
</p>
<a href="#" class="ctn">All Details</a>
</article>
</div>
</div>
</section>
<!--Events-->
<!--Explore-->
<section class="explore" id="explore">
<div class="explore-content">
<h1>EXPLORE THE WORLD</h1>
<div class="line"></div>
<p>
“Travel makes one modest. You see what a tiny place you
occupy in the world.”– Gustav Flaubert <br />Exploring will
make you want to pack your bag, book that ticket and jet
away.
</p>
<a href="#" class="ctn">Explore more</a>
</div>
</section>
<!--Explore-->
<!--tours-->
<section class="tours" id="tours">
<div class="container row">
<div class="col content-col">
<h1 class="font-color">UPCOMING TOURS & DESTINATION</h1>
<div class="line"></div>
<p>
Wed 28 sept 2023 : Port of Spain City Tour and Birdseye
Fort View. <br />
Sat 1 oct 2023 : Tour the Gasparee Caves.<br />
Tues 4 oct 2023 : Trinidad North Coast Experience.
<br />
and many more ......
</p>
<a href="#" class="ctn">Learn more</a>
</div>
<div class="image-col">
<div class="image-gallery">
<img src="./img/img3.png" alt="" />
<img src="./img/img4.png" alt="" />
<img src="./img/img5.png" alt="" />
<img src="./img/img6.png" alt="" />
</div>
</div>
</div>
<br /><br /><br /><br />
</section>
<!--tours-->
<!-- About -->
<section id="about">
<div class="title">
<h1 class="font-color">About Us</h1>
<div class="line"></div>
</div>
<br />
<div id="about_us">
<div class="boxx">
<div class="containerx">
<input type="radio" name="slider" id="item-1" checked />
<input type="radio" name="slider" id="item-2" />
<input type="radio" name="slider" id="item-3" />
<div class="cards">
<label class="cardt" for="item-1" id="col-img-1">
<img src="./img/carousel-img1.jpg" />
</label>
<label class="cardt" for="item-2" id="col-img-2">
<img src="./img/carousel-img2.jpg" />
</label>
<label class="cardt" for="item-3" id="col-img-3">
<img src="./img/carousel-img3.jpg" />
</label>
</div>
</div>
<span id="about-quad"><a href="#home">
<center>
<h1 style="
font-family: var(--ff-montserrat);
color: white;
">
Find that
</h1>
<br />
<img class="img2" src="./img/mountain_dark.jpg" width="200" style="border-radius: 12%" />
<br />
<h1 class="logo" style="font-size: 50px">
ADVENTURE
</h1>
</center>
</a>
</span>
</div>
</div>
</section>
<!-- About -->
<!-- contact -->
<section id="contact">
<div class="title">
<h1 class="font-color">Contact Us</h1>
<div class="line"></div>
</div>
<div class="contact_us">
<form class="cform" action="" method="post">
<div class="crow-message">
<h1 class="color">Send us a message</h1>
<div></div>
</div>
<div class="crow-in">
<input type="text" id="name" name="name" placeholder="Your name" />
<input type="text" id="email" name="email" placeholder="Your Email id" />
</div>
<div class="crow">
<div class="ccol-left">
<select name="country" id="country">
<option value="India">India</option>
<option value="Russia">Russia</option>
<option value="usa">USA</option>
<option value="Japan">Japan</option>
<option value="France">France</option>
<option value="Brazil">Brazil</option>
</select>
</div>
</div>
<div class="crow">
<div class="ccol-left">
<textarea type="text" id="remarks" name="remarks" placeholder="Your Remarks....."
style="height: 150px"></textarea>
</div>
</div>
<input class="crow-s" type="submit" value="Submit" />
</form>
<div class="cbox">
<div>
<p class="cbox-message">
Prefer some other way ?<br />Reach us by using the
details given below
</p>
<div class="cbox-line"></div>
</div>
<div class="c_boxx">
<a href="mailto:[email protected]"><i class="fa fa-envelope"></i>
Mail: [email protected]
</a>
</div>
<div class="c_boxx">
<a href="tel:+91 9999996633"><i class="fa fa-phone"></i>
Phone: (+91) 63835 4****
</a>
</div>
<div class="c_boxx">
<a href="#"><i class="fa fa-map-marker"></i>
Location: Mayiladuthurai, Tamil Nadu , India.
</a>
</div>
</div>
</div>
</section>
<!-- contact -->
<!-- up scroll -->
<i class="fa fa-chevron-up" onclick="topFunction()" id="upbtn"></i>
<!-- end -->
<!--footer-->
<section class="footer" style="height: 10vh;">
<span>Created By <a href="https://swamithedev.vercel.app">Swamithedev</a>| © 2023 All rights
reserved.</span>
<div class="social">
<li>
<a href="https://swamithedev.vercel.app" target="_blank" rel="noreferrer"><i
class="fa fa-globe"></i></a>
<a href="https://github.com/swamithedev" target="_blank" rel="noreferrer"><i
class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/swaminathanselvam" target="_blank" rel="noreferrer"><i
class="fa fa-linkedin-square"></i></a>
</li>
</div>
</section>
<!--footer-->
<script>
const menuBtn = document.querySelector(".menu-btn");
const navlinks = document.querySelector(".nav-links");
menuBtn.addEventListener("click", () => {
navlinks.classList.toggle("mobile-menu");
});
</script>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="js/script.js"></script>
</body>
</html>