-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook.html
169 lines (127 loc) · 4.98 KB
/
book.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
<!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>AirIndiGoTicketBooking</title>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Theme Made By www.w3schools.com -->
<title>Bootstrap Theme Company Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style.css">
<style>
input{
font-size: 23px;
font-weight: 500;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
label{
font-size: 28px;
font-weight: 700;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(20, 19, 19);
}
</style>
</head>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#myPage">AirIndigo</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#">ABOUT</a></li>
<li><a href="#">SERVICES</a></li>
<li><a href="#">CONTACTS</a></li>
<li><a href="#">SIGNUP</a></li>
<li><a href='./login.html' target="_blank">LOGIN</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron text-center">
<marquee behavior="" direction=""><h3 style="text-decoration: overline;">kindly select the flights which is available on the date!!</h3></marquee>
<h1>Welcome to AirIndigo Ticket Booking Window</h1>
<p>Fast, Furious and Safe flights</p>
<div class="input-group">
</div>
</div>
</div><br>
<center><h3 style="font-weight: 700;">Search your Flight Here</h3></center>
<center>
<br><br>
<div class="container">
<form class="col gy-2 gx-3 align-items-center">
<div class="col-auto">
<label class="visually-hidden" for="autoSizingInput">Boarding-City</label>
<input type="text" class="form-control" id="autoSizingInput" placeholder="ex:-Vadodara" style="width: 350px; height: 32px;">
</div><br>
<div class="col-auto">
<label class="visually-hidden" for="autoSizingInput">Destination</label>
<input type="text" class="form-control" id="autoSizingInput" placeholder="ex:-Patna" style="width: 350px; height: 32px;">
</div><br>
<div class="col-auto">
<label class="visually-hidden" for="autoSizingInput">Boarding-City</label>
<input type="date" class="form-control" id="autoSizingInput" style="width: 350px; height: 32px;">
</div><br>
<br><br>
<div class="col-auto">
<button type="submit" class="btn btn-primary btn-lg"> (<a href="https://www.goibibo.com/flights/air-DEL-JLR-20210708--1-0-0-E-D/">Search</a>)</button>
</div>
</form>
</div>
</center>
<br><br><br><br><br>
<!-- Wrapper for slides -->
<!-- Left and right controls -->
<!-- Container (Pricing Section) -->
<script>
$(document).ready(function(){
// Add smooth scrolling to all links in navbar + footer link
$(".navbar a, footer a[href='']").on('click', function(event) {
// Prevent default anchor click behavior
// event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (900) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 900, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
});
// Slide in elements on scroll
$(window).scroll(function() {
$(".slideanim").each(function(){
var pos = $(this).offset().top;
var winTop = $(window).scrollTop();
if (pos < winTop + 600) {
$(this).addClass("slide");
}
});
});
})
</script>
</body>
</html>
</body>
</html>