-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
431 lines (416 loc) · 23 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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<!doctype html>
<html lang=" ">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="./src/sass/main.scss" />
<link href="https://fonts.googleapis.com/css2?family=Mulish&family=Playfair+Display:wght@400;500;600&family=Rubik:wght@400;500&display=swap"
rel="stylesheet">
<title>Travellian</title>
</head>
<body>
<section class="hero">
<header class="hero__header header">
<a href="./" class="header__logo logo">
<img src="./src/images/logo.svg" alt="Travellian logo"
class="logo__img"></a>
<nav class="header__menu main-menu">
<a href="" class="main-menu__item main-menu__item--active" data-text="Home">Home</a>
<a href="" class="main-menu__item" data-text="Explore">Explore</a>
<a href="" class="main-menu__item" data-text="Travel">Travel</a>
<a href="" class="main-menu__item" data-text="Blog">Blog</a>
<a href="" class="main-menu__item" data-text="Pricing">Pricing</a>
</nav>
<nav class="header__menu auth-menu">
<a href="" class="auth-menu__item" data-text="Login">Login</a>
<a href="" class="auth-menu__item auth-menu__item--btn" data-text="Sign up">Sign up</a>
</nav>
</header>
<div class="lead">
<h1 class="lead__hdl">Start your unforgettable<br> journey with us</h1>
<p class="lead__text">The best travel for your journey begins now</p>
</div>
<form action="" class="search">
<div class="search__wrapper">
<div class="search__group">
<label for="destination" class="search__lbl">Destination</label>
<input type="text" id="destination" name="destination" class="search__input" placeholder="Dubai">
</div>
<div class="search__group">
<label for="person" class="search__lbl">Person</label>
<select id="person" name="person" class="search__input">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</div>
<div class="search__group">
<label for="checkin" class="search__lbl">Check In</label>
<input type="date" id="checkin" name="checkin" class="search__input">
</div>
<div class="search__group">
<label for="checkout" class="search__lbl">Check Out</label>
<input type="date" id="checkout" name="checkout" class="search__input">
</div>
<button type="submit" class="search__btn">
<span class="l-search-btn-wrapper" data-text="Book">Book<br>Now</span></button>
</div>
</form>
</section>
<div class="l-grid">
<div class="l-grid__item">
<section class="destinations">
<h2 class="destinations__hdl">Popular Destinations</h2>
<div class="l-subhdl-wrapper">
<h3 class="destinations__text">Most popular destinations around the world, from historical places to
natural
wonders.</h3>
<nav class="carousel-nav">
<div class="carousel-nav__left left-btn"><img src="src/images/wide_arrow.svg"
alt="Left-pointing arrow"
class="left-btn__img">
</div>
<div class="carousel-nav__right right-btn"><img src="src/images/wide_arrow.svg"
alt="Right-pointing arrow"
class="right-btn__img">
</div>
</nav>
</div>
<div class="destinations__carousel carousel">
<div class="carousel-item">
<img src="src/images/destination1.jpg" alt="" class="carousel-item__img">
<h3 class="carousel-item__hdl">Monument of Berlin</h3>
<p class="carousel-item__location">Berlin, Germany</p>
</div>
<div class="carousel-item">
<img src="src/images/destination2.jpg" alt="" class="carousel-item__img">
<h3 class="carousel-item__hdl">Millenium Bridge</h3>
<p class="carousel-item__location">London, United Kingdom</p>
</div>
<div class="carousel-item">
<img src="src/images/destination3.jpg" alt="" class="carousel-item__img">
<h3 class="carousel-item__hdl">Rialto Bridge</h3>
<p class="carousel-item__location">Venice, Italy</p>
</div>
<div class="carousel-item">
<img src="src/images/destination4.jpg" alt="" class="carousel-item__img">
<h3 class="carousel-item__hdl">Sea of Orange Tiles</h3>
<p class="carousel-item__location">Lisbon, Portugal</p>
</div>
</div>
</section>
</div>
<div class="l-grid__item">
<section class="offer">
<h2 class="offer__hdl">Special Offer</h2>
<div class="l-offer-subhdl">
<nav class="carousel-nav">
<div class="carousel-nav__left left-btn"><img src="src/images/wide_arrow.svg"
alt="Left-pointing arrow"
class="left-btn__img">
</div>
<div class="carousel-nav__right right-btn"><img src="src/images/wide_arrow.svg"
alt="Right-pointing arrow"
class="right-btn__img">
</div>
</nav>
<h3 class="offer__text">Check out our special offer and discounts</h3>
</div>
<div class="offer__carousel carousel">
<div class="carousel-item">
<img src="src/images/offer1.jpg" alt="" class="carousel-item__img">
<h3 class="carousel-item__location">Lisbon, Portugal</h3>
<div class="carousel-item__rating"></div>
<div class="carousel-item__desc">5 nights and 4 days in 5 star hotel, breakfast and lunch included.
Very popular during the renaissance. Passage and going through the cities of the world
literature.
</div>
<div class="l-price-wrapper">
<span class="carousel-item__price">
<span class="carousel-item__price-from">From</span>
<span class="carousel-item__price-price">€500</span>
</span>
<button class="carousel-item__btn">Details</button>
</div>
</div>
<div class="carousel-item">
<img src="src/images/offer2.jpg" alt="" class="carousel-item__img">
<h3 class="carousel-item__location">Athens, Greece</h3>
<div class="carousel-item__rating"></div>
<div class="carousel-item__desc">5 nights and 4 days in 5 star hotel, breakfast and lunch included.
Very popular during the renaissance. Passage and going through the cities of the world
literature.
</div>
<div class="l-price-wrapper">
<span class="carousel-item__price">
<span class="carousel-item__price-from">From</span>
<span class="carousel-item__price-price">€800</span>
</span>
<button class="carousel-item__btn">Details</button>
</div>
</div>
<div class="carousel-item">
<img src="src/images/offer3.jpg" alt="" class="carousel-item__img">
<h3 class="carousel-item__location">Rome, Italy</h3>
<div class="carousel-item__rating"></div>
<div class="carousel-item__desc">5 nights and 4 days in 5 star hotel, breakfast and lunch included.
Very popular during the renaissance. Passage and going through the cities of the world
literature.
</div>
<div class="l-price-wrapper">
<span class="carousel-item__price">
<span class="carousel-item__price-from">From</span>
<span class="carousel-item__price-price">€750</span>
</span>
<button class="carousel-item__btn">Details</button>
</div>
</div>
</div>
</section>
</div>
<div class="l-grid__item">
<section class="blog">
<h2 class="blog__hdl">Our Blog</h2>
<h3 class="blog__subhdl">An insight the incredible experience in the world</h3>
<article class="blog__post post">
<div class="post__photo">
<img src="src/images/blog_photo.jpg" alt="A lighthouse in Italy" class="post__img">
</div>
<div class="post__content">
<h2 class="post__hdl">Beautiful Italy<br>Let's travel</h2>
<p class="post__text">But I must explain to you 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, dislike, or avoids pleasure itself, because it is pleasure, but because rationally
encounter consequences that are extremly painful. Nor again is there anyone who loves or
pursues.</p>
<span class="post__read-more">Read More</span>
</div>
</article>
</section>
</div>
<div class="l-grid__item">
<section class="planners">
<div class="planners__sidebar sidebar">
<div class="sidebar__hdl">Trip Planners</div>
<div class="sidebar__txt">20 years from now you will be more disappointed by the things that you
didn't
do.
Stop regretting and start travelling, start throwing off the bowlines.
</div>
<div class="l-btn-wrapper">
<button class="sidebar__btn">View all trip plans</button>
</div>
</div>
<div class="planners__carousel carousel">
<div class="carousel-item">
<img src="src/images/planners1.jpg"
alt="Colosseum in the evening"
class="carousel-item__img">
<div class="l-active-item">
<div class="l-active-item-header">
<span class="carousel-item__hdl">Guided tour</span>
<span class="carousel-item__price">€120/Day</span>
</div>
<div class="carousel-item__location">Rome City Tour</div>
<div class="l-active-item-footer">
<span class="carousel-item__rating"></span>
<span class="carousel-item__details">7 Days tour</span>
</div>
</div>
</div>
<div class="l-active-item">
<div class="carousel-item">
<img src="src/images/planners2.jpg"
alt="Eiffel tower in Autumn"
class="carousel-item__img">
<div class="l-active-item">
<div class="l-active-item-header">
<span class="carousel-item__hdl">Guided tour</span>
<span class="carousel-item__price">€99/Day</span>
</div>
<div class="carousel-item__location">Paris City Tour</div>
<div class="l-active-item-footer">
<span class="carousel-item__rating"></span>
<span class="carousel-item__details">7 Days tour</span>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<img src="src/images/planners3.jpg"
alt="Nightlife in Barcelona"
class="carousel-item__img">
<div class="l-active-item">
<div class="l-active-item-header">
<span class="carousel-item__hdl">Guided tour</span>
<span class="carousel-item__price">€89/Day</span>
</div>
<div class="carousel-item__location">Barcelona City Tour</div>
<div class="l-active-item-footer">
<span class="carousel-item__rating"></span>
<span class="carousel-item__details">7 Days tour</span>
</div>
</div>
</div>
<div class="carousel-item">
<img src="src/images/planners4.jpg"
alt="Cathedral in Germany"
class="carousel-item__img">
<div class="l-active-item">
<div class="l-active-item-header">
<span class="carousel-item__hdl">Guided tour</span>
<span class="carousel-item__price">€79/Day</span>
</div>
<div class="carousel-item__location">Wittenberg City Tour</div>
<div class="l-active-item-footer">
<span class="carousel-item__rating"></span>
<span class="carousel-item__details">7 Days tour</span>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="l-grid__item">
<section class="gallery">
<h2 class="gallery__hdl">Destination Gallery</h2>
<div class="l-subhdl-wrapper">
<p class="gallery__text">Our photo gallery on trip</p>
<nav class="carousel-nav">
<div class="carousel-nav__left left-btn"><img src="src/images/wide_arrow.svg"
alt="Left-pointing arrow"
class="left-btn__img">
</div>
<div class="carousel-nav__right right-btn"><img src="src/images/wide_arrow.svg"
alt="Right-pointing arrow"
class="right-btn__img">
</div>
</nav>
</div>
<div class="gallery__carousel carousel">
<img src="./src/images/gallery1.jpg"
alt="A man standing on a staircase"
class="carousel-item">
<img src="./src/images/gallery2.jpg"
alt="Two lovers at a sunset near an ocean"
class="carousel-item">
<img
src="./src/images/gallery3.jpg"
alt="A woman touring a narrow street"
class="carousel-item">
<img
src="./src/images/gallery4.jpg"
alt="A man on a train-track"
class="carousel-item">
</div>
</section>
</div>
<div class="l-grid__item">
<section class="testimonial">
<h2 class="testimonial__hdl">Traveler's Experiences</h2>
<p class="testimonial__subhdl">Here some awesome feedback from our travelers</p>
<div class="testimonial__carousel carousel">
<div class="carousel-item">
<img src="src/images/testimonial1.png" alt="Avatar of the reviewer" class="carousel-item__avatar">
<p class="carousel-item__review">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 of the truth,
the
master- builder of human happiness.</p>
<div class="carousel-item__rating"></div>
<div class="carousel-item__name">John Doe</div>
<div class="carousel-item__title">Accountant</div>
</div>
<div class="carousel-item">
<img src="src/images/testimonial2.png" alt="Avatar of the reviewer" class="carousel-item__avatar">
<p class="carousel-item__review">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 of the truth,
the
master- builder of human happiness.</p>
<div class="carousel-item__rating"></div>
<div class="carousel-item__name">John Smith</div>
<div class="carousel-item__title">Journalist, HWO News</div>
</div>
<div class="carousel-item">
<img src="src/images/testimonial3.png" alt="Avatar of the reviewer" class="carousel-item__avatar">
<p class="carousel-item__review">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 of the truth,
the
master- builder of human happiness.</p>
<div class="carousel-item__rating"></div>
<div class="carousel-item__name">Tamara Bellis</div>
<div class="carousel-item__title">Managing Director, JTH</div>
</div>
</div>
<nav class="carousel-nav">
<div class="carousel-nav__left left-btn"><img src="src/images/wide_arrow.svg"
alt="Left-pointing arrow"
class="left-btn__img">
</div>
<div class="carousel-nav__right right-btn"><img src="src/images/wide_arrow.svg"
alt="Right-pointing arrow"
class="right-btn__img">
</div>
</nav>
</section>
</div>
</div>
<form action="" class="newsletter">
<h2 class="newsletter__hdl">Our Newsletter</h2>
<div class="l-newsletter-wrapper">
<div class="newsletter__group">
<label class="newsletter__lbl" for="email">Email</label>
<input class="newsletter__email" type="email" id="email" name="email" placeholder="Enter your email">
</div>
<input type="button" value="Subscribe" class="newsletter__btn">
</div>
</form>
<footer class="footer">
<div class="l-footer-wrapper">
<div class="logo-copyright">
<img src="src/images/logo.svg" alt="Travellian logo" class="logo-copyright__logo">
<div class="logo-copyright__copyright">
Copyright © Travellian 2020 All rights reserved
</div>
</div>
<nav class="footer-menu">
<h4 class="footer-menu__hdl" data-text="Menu">Menu</h4>
<div class="footer-menu__item" data-text="Home">Home</div>
<div class="footer-menu__item" data-text="Explore">Explore</div>
<div class="footer-menu__item" data-text="Travel">Travel</div>
<div class="footer-menu__item" data-text="Blog">Blog</div>
<div class="footer-menu__item" data-text="Pricing">Pricing</div>
</nav>
<nav class="info">
<h4 class="info__hdl" data-text="Information">Information</h4>
<div class="info__item" data-text="Destinations">Destinations</div>
<div class="info__item" data-text="Supports">Supports</div>
<div class="info__item" data-text="Terms & Conditions">Terms & Conditions</div>
<div class="info__item" data-text="Privacy">Privacy</div>
</nav>
<nav class="contact">
<h4 class="contact__hdl" data-text="Contact Info">Contact Info</h4>
<div class="contact__item" data-text="+123 456 789">+123 456 789</div>
<div class="contact__item" data-text="[email protected]"><a href="">[email protected]</a></div>
<div class="contact__item" data-text="1245, New Yourk, USA">1245, New Yourk, USA</div>
</nav>
<nav class="social">
<h4 class="social__hdl">Follow us on</h4>
<img src="src/images/fb_social.svg" alt="Facebook icon" class="social__img">
<img src="src/images/pinterest_social.svg" alt="Pinterest icon" class="social__img">
<img src="src/images/insta_social.svg" alt="Instagram icon" class="social__img">
<img src="src/images/twitter_social.svg" alt="Twitter icon" class="social__img">
</nav>
</div>
</footer>
</body>
</html>