-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (106 loc) · 3.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flight Booking App</title>
<link
rel="shortcut icon"
href="https://cdn-icons-png.flaticon.com/512/3125/3125713.png"
type="image/x-icon"
/>
<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=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.tailwindcss.com"></script>
<style>
* {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif !important;
}
</style>
</head>
<body>
<header class="text-gray-600 body-font">
<div
class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"
>
<a
class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0"
>
<img
width="50"
src="https://cdn-icons-png.flaticon.com/512/3125/3125713.png"
alt=""
/>
<span class="ml-3 text-xl">Flight Booking</span>
</a>
<nav
class="md:ml-auto md:mr-auto flex flex-wrap items-center text-base justify-center"
>
<a href="" class="mr-5 hover:text-gray-900">Home</a>
<a href="" class="mr-5 hover:text-gray-900">About</a>
<a href="" class="mr-5 hover:text-gray-900">Booking</a>
<a href="" class="mr-5 hover:text-gray-900">Flights</a>
</nav>
<button
class="inline-flex items-center bg-indigo-500 text-white border-0 py-1 px-3 focus:outline-none hover:bg-indigo-600 rounded text-base mt-4 md:mt-0"
>
Login
</button>
</div>
</header>
<section class="text-gray-600 body-font">
<div
class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center"
>
<div
class="lg:flex-grow md:w-1/2 lg:pr-24 md:pr-16 flex flex-col md:items-start md:text-left mb-16 md:mb-0 items-center text-center"
>
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900"
>
Air Planes Rises on the <br class="hidden lg:inline-block my-2" />moon book flights
</h1>
<p class="mb-8 leading-relaxed">
Copper mug try-hard pitchfork pour-over freegan heirloom neutra air
plant cold-pressed tacos poke beard tote bag. Heirloom echo park
mlkshk tote bag selvage hot chicken authentic tumeric truffaut
hexagon try-hard chambray.
</p>
<div class="flex justify-center">
<button
class="inline-flex text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg"
>
Book a Flight
</button>
<button
class="ml-4 inline-flex text-gray-700 bg-gray-100 border-0 py-2 px-6 focus:outline-none hover:bg-gray-200 rounded text-lg"
>
Login
</button>
</div>
</div>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6">
<img
class="object-cover object-center rounded"
alt="hero"
src="https://asiaexchange.org/wp-content/uploads/2020/03/The-Best-Online-Flight-Search-Websites-1.jpg"
/>
</div>
</div>
</section>
<script src="https://www.gstatic.com/dialogflow-console/fast/messenger/bootstrap.js?v=1"></script>
<df-messenger
chat-title="Flight Booking Chat Bot"
agent-id="462fbaa6-5907-4bd1-b9f5-b3f4d915f4ea"
language-code="en"
intent="WELCOME"
chat-icon="https://cdn-icons-png.flaticon.com/512/3125/3125713.png"
></df-messenger>
</body>
</html>