-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflight.html
125 lines (101 loc) · 2.83 KB
/
flight.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
<html>
<head><title></title>
</head>
<style>
body{
background-image:url("Flight.jpg");
background-repeat:no-repeat;
background-size:100% 100%;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color:#333;
}
li {
float:left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 12px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color:indigo;
}
li a:hover
{
background-color:green;
}
.active
{
background-color:green;
}
</style>
<body>
<ul>
<li> <a href="book.htm"><img src="logo.jpg" width="50px" height="40spx"></a></li>
<h2><li><a href="book.htm">HOME</a></li></h2>
<h2><li><a class="active" href="flight.html">FLIGHT</a></li></h2>
<h2> <li><a href="train.html">TRAIN</a></li></h2>
<h2><li><a href="bus.html">BUS</a></li></h2>
<h2><li><a href="cabs.html">CABS</a></li></h2>
<h2 style="font-family:'Courier'"><li style="float:right"><a href="loginphp.html">LOG IN</a></li></h2>
</ul>
<form action="flight.php">
<center>
<h1 style="color:orange"><marquee bgcolor="green">Lufthansa-There’s no better way to fly.</marquee></h1>
<table style="background-color:grey;color:white;opacity:0.7;padding:55px;spacing:30px">
<tr>
<td>From:</td>
<td><input type="text" name="flight" placeholder="Airport" required</td></tr>
<tr>
<td>To:</td>
<td><input type="text" name="txt2" placeholder="Airport" required</td>
</tr><tr>
<td>Name:</td>
<td><input type="text" name="" placeholder="Your name" required</td></tr>
<tr>
<td>Age:</td>
<td><input type="number" name="" placeholder="Your age" required</td>
</tr>
<tr>
<td>Address:</td>
<td><input type="text" nqme="" placeholder="permanent-address" required</td></tr>
<tr>
<td>Payment options:</td>
<td><input type="radio" name="payment" value="cc" />Credit Card <br/>
<input type="radio" name="payment" value="dc" />Debit card <br/>
<input type="radio" name="payment" value="wallet">wallet<br/>
</td>
<tr>
<td><input type="checkbox" value="fit" name="trip3" >One-Way Trip</td>
<td><input type="checkbox" value="ist" name="fly" >Round Trip</td> <tr/>
<center><tr><td>Date oF Journey:<input type="date" type="calender" placeholder="Enter Date"></td></tr> </center>
<tr>
<td>
<select>
<option>SELECT PLANE</option/>
<option>Indigo</option/>
<option>Air India</option/>
<option>Jet</option/>
<option>King Fisher</option/>
<option>Vistara</option/>
</select> </td>
<td><select>
<option>SELECT CLASS</option/>
<option>Business Class</option/>
<option>Economic Class</option/>
<option>Primium Economy Class</option/>
</select> </td> <tr/>
<b><tr>
<td><input type="button" style="color:red" value="Search"</td>
</b>
<td><input type="button" style="color:red" value="Cancel"</td></tr>
</table>
</body>
</html>