-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
605 lines (585 loc) · 23.4 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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
<!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" />
<title>Jadoo</title>
<link href="/dist/output.css" rel="stylesheet" />
</head>
<body class="scroll-smooth pb-4">
<div class="flex flex-col h-screen">
<!-- ! Navbar -->
<nav class="navbar font-montserrat">
<div class="max-w-7xl px-4 mx-auto">
<div class="flex justify-between">
<div class="space-x-7 flex">
<div>
<!--? Website Logo -->
<a href="#" class="md:py-0 flex items-center px-2 py-2">
<img src="./img/Logo.svg" alt="Logo" class="w-14 md:w-28 md:h-20 h-12" />
</a>
</div>
</div>
<!--? Primary Navbar items -->
<div class="md:flex items-center hidden space-x-12 text-black transition">
<a href="" class="hover:text-orange-500 px-2 py-4 font-semibold">Destinations</a>
<a
href=""
class="hover:text-orange-500 px-2 py-4 font-semibold transition duration-300"
>
Hotels
</a>
<a
href=""
class="hover:text-orange-500 px-2 py-4 font-semibold transition duration-300"
>
Flights
</a>
<a
href=""
class="hover:text-orange-500 px-2 py-4 font-semibold transition duration-300"
>
Bookings
</a>
<a
href=""
class="hover:text-orange-500 px-2 py-4 font-semibold transition duration-300"
>
Login
</a>
<a
href=""
class="hover:bg-orange-500 hover:border-orange-500 hover:text-slate-50 px-4 py-1 font-semibold transition duration-300 border-2 border-orange-500 border-solid rounded"
>
Sign Up
</a>
</div>
<!-- Mobile menu button -->
<div class="md:hidden flex items-center">
<button class="mobile-menu-button outline-none">
<svg
class="hover:text-rose-500 w-6 h-6 text-gray-500"
x-show="!showMenu"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- mobile menu -->
<div class="mobile-menu absolute z-30 hidden w-full bg-white shadow-xl">
<ul class="">
<li class="active">
<a href="index.html" class="hover:bg-orange-300 block px-2 py-4 text-sm"
>Destinations</a
>
</li>
<li>
<a
href="#contact"
class="hover:bg-orange-300 block px-2 py-4 text-sm transition duration-300"
>Hotels</a
>
</li>
<li>
<a
href="#services"
class="hover:bg-orange-300 block px-2 py-4 text-sm transition duration-300"
>Flights</a
>
</li>
<li>
<a
href="#about"
class="hover:bg-orange-300 block px-2 py-4 text-sm transition duration-300"
>Bookings</a
>
</li>
<li>
<a
href="#contact"
class="hover:bg-orange-300 block px-2 py-4 text-sm transition duration-300"
>Login</a
>
</li>
<li>
<a
href="#contact"
class="hover:bg-orange-300 block px-2 py-4 text-sm transition duration-300"
>Sign Up</a
>
</li>
</ul>
</div>
</nav>
<img class="md:h-screen -z-10 absolute top-0 right-0" src="./img/Decore.svg" alt="" />
<!-- ! Header -->
<div class="header max-w-7xl md:px-4 flex m-auto">
<div class="header-text md:w-1/2 flex flex-col justify-center w-full">
<h3
class="font-montserrat md:text-lg px-2 my-3 text-sm font-bold tracking-tight text-orange-600"
>
BEST DESTINATIONS AROUND THE WORLD
</h3>
<h1 class="font-merry md:text-7xl px-2 my-2 text-5xl font-bold text-gray-800">
Travel, <strong>enjoy </strong> and live a new and full life
</h1>
<p
class="font-montserrat md:text-lg px-2 my-3 text-base font-semibold leading-7 text-gray-500"
>
The Nomad feature helps you to find the cheapest route for a multi-destination trip and
also offers pre-planned itineraries.
</p>
<div
class="md:flex-row md:items-start md:space-x-4 md:space-y-0 flex flex-col items-center px-2 my-5 space-y-5"
>
<button
class="bg-amber-400 hover:bg-amber-600 hover:shadow-amber-600/30 w-44 font-montserrat shadow-amber-400/30 py-3 font-medium text-white transition duration-300 rounded-lg shadow-xl"
>
Find out more
</button>
<div class="md:mx-0 m-auto cursor-pointer">
<span
class="shadow-red-500/30 w-fit inline-block p-3 mr-4 text-white align-middle bg-red-500 rounded-full shadow-xl"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-6 h-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
</span>
<span class="font-montserrat my-auto font-semibold tracking-tight text-gray-500">
Play Demo
</span>
</div>
</div>
</div>
<div class="hero md:block hidden w-1/2">
<img src="./img/hero.svg" alt="" />
</div>
</div>
</div>
<!-- ! Services -->
<div class="max-w-7xl md:my-20 relative px-4 mx-auto my-10">
<img src="./img/services-decore.svg" class="-z-10 absolute top-0 right-0" alt="" />
<h5 class="font-montserrat pt-4 text-base font-bold tracking-wider text-center text-gray-600">
CATEGORY
</h5>
<h2 class="font-merry md:text-5xl mt-6 mb-12 text-3xl font-bold text-center text-gray-800">
We Offer Best Services
</h2>
<div
class="justify-evenly md:my-8 md:flex-row md:space-y-0 z-10 flex flex-col items-center my-4 space-y-4"
>
<div
class="md:max-w-[230px] bg-[#fafafa] flex md:block text-center shadow-lg rounded-xl py-4 px-2 md:py-10 md:px-3"
>
<img src="./img/weather.svg" class="mx-auto" alt="" />
<div>
<p
class="font-merry md:text-lg mt-4 mb-2 text-base font-semibold tracking-wide text-gray-700"
>
Calculated Weather
</p>
<p class="font-montserrat md:text-base text-sm font-medium text-gray-600">
Built Wicket longer admire do barton vanity itself do in it.
</p>
</div>
</div>
<div
class="md:max-w-[230px] bg-[#fafafa] flex md:block text-center shadow-lg rounded-xl py-4 px-2 md:py-10 md:px-3"
>
<img src="./img/local-events.svg" class="mx-auto" alt="" />
<div>
<p
class="font-merry md:text-lg mt-4 mb-2 text-base font-semibold tracking-wide text-gray-700"
>
Best Flights
</p>
<p class="font-montserrat md:text-base text-sm font-medium text-gray-600">
Engrossed listening. Park gate sell they west hard for the.
</p>
</div>
</div>
<div
class="md:max-w-[230px] bg-[#fafafa] flex md:block text-center shadow-lg rounded-xl py-4 px-2 md:py-10 md:px-3"
>
<img src="./img/weather.svg" class="mx-auto" alt="" />
<div>
<p
class="font-merry md:text-lg mt-4 mb-2 text-base font-semibold tracking-wide text-gray-700"
>
Local Events
</p>
<p class="font-montserrat md:text-base text-sm font-medium text-gray-600">
Barton vanity itself do it. Preferd to men it engrossed listening.
</p>
</div>
</div>
<div
class="md:max-w-[230px] bg-[#fafafa] flex md:block text-center shadow-lg rounded-xl py-4 px-2 md:py-10 md:px-3"
>
<img src="./img/local-events.svg" class="mx-auto" alt="" />
<div>
<p
class="font-merry md:text-lg mt-4 mb-2 text-base font-semibold tracking-wide text-gray-700"
>
Customization
</p>
<p class="font-montserrat md:text-base text-sm font-medium text-gray-600">
We deliver outsourced aviation services for military customers.
</p>
</div>
</div>
</div>
</div>
<!-- ! Destinations -->
<div class="max-w-7xl mx-auto">
<h5 class="font-montserrat pt-4 text-base font-bold tracking-wider text-center text-gray-600">
TOP SELLING
</h5>
<h2 class="font-merry md:text-5xl mt-6 mb-12 text-3xl font-bold text-center text-gray-800">
Top Destinations
</h2>
<div
class="destination-wrapper justify-evenly md:flex-row md:space-y-0 flex flex-col items-center space-y-6"
>
<div class="destination1 rounded-2xl max-w-xs border-2 shadow-lg">
<img src="./img/rome.jpg" class="rounded-t-2xl" alt="" />
<div class="m-4">
<div
class="font-montserrat flex justify-between mb-2 text-lg font-semibold text-gray-600"
>
<span>Rome, Italy</span> <span>$5.42k</span>
</div>
<span class="inline-block text-gray-600 align-middle rotate-90">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-5 h-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
d="M10.894 2.553a1 1 0 00-1.788 0l-7 14a1 1 0 001.169 1.409l5-1.429A1 1 0 009 15.571V11a1 1 0 112 0v4.571a1 1 0 00.725.962l5 1.428a1 1 0 001.17-1.408l-7-14z"
/>
</svg>
</span>
<span
class="font-montserrat inline-block text-base font-medium text-gray-600 align-middle"
>
10 Days Trip
</span>
</div>
</div>
<div class="destination1 rounded-2xl max-w-xs border-2 shadow-lg">
<img src="./img/london.jpg" class="rounded-t-2xl" alt="" />
<div class="m-4">
<div
class="font-montserrat flex justify-between mb-2 text-lg font-semibold text-gray-600"
>
<span>London, UK</span> <span>$4.2k</span>
</div>
<span class="inline-block text-gray-600 align-middle rotate-90">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-5 h-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
d="M10.894 2.553a1 1 0 00-1.788 0l-7 14a1 1 0 001.169 1.409l5-1.429A1 1 0 009 15.571V11a1 1 0 112 0v4.571a1 1 0 00.725.962l5 1.428a1 1 0 001.17-1.408l-7-14z"
/>
</svg>
</span>
<span
class="font-montserrat inline-block text-base font-medium text-gray-600 align-middle"
>
12 Days Trip
</span>
</div>
</div>
<div class="destination1 rounded-2xl max-w-xs border-2 shadow-lg">
<img src="./img/europe.jpg" class="rounded-t-2xl" alt="" />
<div class="m-4">
<div
class="font-montserrat flex justify-between mb-2 text-lg font-semibold text-gray-600"
>
<span>Full Europe</span> <span>$15k</span>
</div>
<span class="inline-block text-gray-600 align-middle rotate-90">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-5 h-5"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
d="M10.894 2.553a1 1 0 00-1.788 0l-7 14a1 1 0 001.169 1.409l5-1.429A1 1 0 009 15.571V11a1 1 0 112 0v4.571a1 1 0 00.725.962l5 1.428a1 1 0 001.17-1.408l-7-14z"
/>
</svg>
</span>
<span
class="font-montserrat inline-block text-base font-medium text-gray-600 align-middle"
>
28 Days Trip
</span>
</div>
</div>
</div>
</div>
<!-- ! Trip Section -->
<div class="max-w-7xl my-12 md:my-32 flex flex-col space-y-10 md:space-y-0 md:flex-row mx-auto">
<div class="md:w-1/2 mx-4 text-center md:text-left">
<h5 class="font-montserrat pt-4 text-base font-bold tracking-wider text-gray-600">
EASY AND FAST
</h5>
<h2
class="font-merry md:text-5xl mt-6 mb-12 leading-loose text-3xl font-bold text-gray-800"
>
Book Your Next Trip <br />
In 3 Easy Steps
</h2>
<div class="space-y-6 text-gray-600">
<div class="flex max-w-md">
<div class="mr-4">
<svg
xmlns="http://www.w3.org/2000/svg"
class="rounded-2xl w-20 h-20 p-4 text-white bg-yellow-400"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M8 16l2.879-2.879m0 0a3 3 0 104.243-4.242 3 3 0 00-4.243 4.242zM21 12a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
</div>
<div class="font-montserrat">
<p class="text-lg font-bold tracking-wide">Choose Destination</p>
<p class="font text-base font-medium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Urna, tortor tempus.
</p>
</div>
</div>
<div class="flex max-w-md">
<div class="mr-4">
<svg
xmlns="http://www.w3.org/2000/svg"
class="rounded-2xl w-20 h-20 p-4 bg-red-500 text-white"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 9V7a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2m2 4h10a2 2 0 002-2v-6a2 2 0 00-2-2H9a2 2 0 00-2 2v6a2 2 0 002 2zm7-5a2 2 0 11-4 0 2 2 0 014 0z"
/>
</svg>
</div>
<div class="font-montserrat">
<p class="text-lg font-bold tracking-wide">Make Payment</p>
<p class="font text-base font-medium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Urna, tortor tempus.
</p>
</div>
</div>
<div class="flex max-w-md">
<div class="mr-4">
<svg
xmlns="http://www.w3.org/2000/svg"
class="rounded-2xl text-white w-20 h-20 p-4 bg-teal-700"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"
/>
</svg>
</div>
<div class="font-montserrat">
<p class="text-lg font-bold tracking-wide">Reach Airport on Selected Date</p>
<p class="font text-base font-medium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Urna, tortor tempus.
</p>
</div>
</div>
</div>
</div>
<div class="flex items-center justify-center md:w-1/2">
<img src="./img/book.svg" class="" alt="" />
</div>
<div></div>
</div>
<!--! Testimonial -->
<div class="md:flex max-w-7xl mx-auto">
<div class="md:w-2/3 md:my-auto mb-6 text-center md:text-left mx-4">
<h5 class="font-montserrat pt-4 text-base font-bold tracking-wider text-gray-600">
TESTIMONIALS
</h5>
<h2 class="font-merry md:text-5xl mt-6 text-3xl font-bold text-gray-800">
What People Say
</h2>
<h2 class="font-merry md:text-5xl mt-6 text-3xl font-bold text-gray-800">About Us.</h2>
</div>
<div class="slider md:w-1/3">
<input type="radio" name="slider" title="slide1" checked="checked" class="slider__nav" />
<input type="radio" name="slider" title="slide2" class="slider__nav" />
<input type="radio" name="slider" title="slide3" class="slider__nav" />
<input type="radio" name="slider" title="slide4" class="slider__nav" />
<div class="slider__inner">
<div class="slider__contents">
<i class="slider__image fa fa-codepen"></i>
<h2 class="slider__caption">Mike Taylor</h2>
<p class="slider__txt">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. At cupiditate omnis possimus
illo quos, corporis minima!
</p>
</div>
<div class="slider__contents">
<i class="slider__image fa fa-newspaper-o"></i>
<h2 class="slider__caption">newspaper-o</h2>
<p class="slider__txt">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. At cupiditate omnis possimus
illo quos, corporis minima!
</p>
</div>
<div class="slider__contents">
<i class="slider__image fa fa-television"></i>
<h2 class="slider__caption">television</h2>
<p class="slider__txt">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. At cupiditate omnis possimus
illo quos, corporis minima!
</p>
</div>
<div class="slider__contents">
<i class="slider__image fa fa-diamond"></i>
<h2 class="slider__caption">diamond</h2>
<p class="slider__txt">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. At cupiditate omnis possimus
illo quos, corporis minima!
</p>
</div>
</div>
</div>
</div>
<!-- ! Companies -->
<div
class="flex flex-col w-40 space-y-10 md:flex-row md:space-y-0 md:max-w-7xl md:w-auto md:items-center md:justify-evenly my-16 md:my-24 mx-auto"
>
<img src="./img/logo1.svg" alt="" />
<img src="./img/logo2.svg" alt="" />
<img src="./img/logo3.svg" alt="" />
<img src="./img/logo4.svg" alt="" />
<img src="./img/logo5.svg" alt="" />
</div>
<!-- ! Subscribe -->
<div
class="relative max-w-7xl md:mx-auto flex flex-col justify-center items-center md:rounded-tl-[150px] rounded-3xl bg-purple-100 p-4 mx-4 md:px-10 md:py-5 h-96"
>
<h4
class="font-bold text-xl md:text-3xl z-10 text-center leading-relaxed text-gray-600 font-montserrat tracking-wide mb-6 md:mb-12 max-w-4xl"
>
Subscribe to get information, latest news and other interesting offers about Cobham
</h4>
<div
class="w-full flex flex-col md:flex-row justify-center space-y-3 md:space-y-0 md:space-x-10"
>
<input
type="text"
name="email"
id=""
placeholder="Your Email"
class="bg-white px-2 w-full max-w-xl z-10 py-4 font-montserrat rounded-xl"
/>
<button
class="bg-orange-400 px-10 rounded-xl py-3 text-white font-montserrat text-lg tracking-wide font-semibold"
>
Subscribe
</button>
</div>
<img src="./img/subscribe1.svg" class="hidden md:block absolute left-0" alt="" />
<img src="./img/subscribe2.svg" class="hidden md:block absolute right-0 top-0" alt="" />
</div>
<!-- ! Footer -->
<div class="footer w-full mt-10 px-5 pt-10">
<div
class="footer-inner w-full max-w-7xl md:mx-auto flex flex-col md:flex-row justify-evenly items-top"
>
<div class="footer-inner-1 flex flex-col">
<h3 class="text-5xl font-montserrat font-bold mb-4">Jadoo</h3>
<p class="font-montserrat text-base">
Book your trip in minute, get full <br />
control for much longer
</p>
</div>
<div class="footer-inner-2 font-montserrat">
<p class="font-bold text-2xl text-gray-800 mb-8 tracking-wide">Company</p>
<p class="font-semibold text-lg text-gray-600">About</p>
<p class="font-semibold text-lg text-gray-600">Careers</p>
<p class="font-semibold text-lg text-gray-600">Mobile</p>
</div>
<div class="footer-inner-2 font-montserrat">
<p class="font-bold text-2xl text-gray-800 mb-8 tracking-wide">Contact</p>
<p class="font-semibold text-lg text-gray-600">Help/FAQ</p>
<p class="font-semibold text-lg text-gray-600">Press</p>
<p class="font-semibold text-lg text-gray-600">Affiliates</p>
</div>
<div class="footer-inner-2 font-montserrat">
<p class="font-bold text-2xl text-gray-800 mb-8 tracking-wide">More</p>
<p class="font-semibold text-lg text-gray-600">AirelineFees</p>
<p class="font-semibold text-lg text-gray-600">Airline</p>
<p class="font-semibold text-lg text-gray-600">Low Fare Tips</p>
</div>
</div>
<p class="mt-10 text-center font-montserrat text-gray-500">All rights reserved@jadoo.co</p>
</div>
<!--! Scripts -->
<script>
const btn = document.querySelector("button.mobile-menu-button");
const menu = document.querySelector(".mobile-menu");
const nav = document.querySelector(".navbar");
btn.addEventListener("click", () => {
nav.classList.toggle("bg-white");
menu.classList.toggle("hidden");
});
</script>
</body>
</html>