-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain.html
118 lines (91 loc) · 2.39 KB
/
train.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
<html>
<head>
<title>
</title>
</head>
<style>
body{
background-image:url('first.jpg');
background-repeat:no-repeat;
background-size:100% 100%
}
.background-image {
-webkit-filter: blur(5px); /* Safari 6.0 - 9.0 */
filter: blur(5px);
}
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;
}
table{
color:white;
}
</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 href="flight.html">FLIGHT</a></li></h2>
<h2> <li><a class="active" 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 name="railway">
<center>
<h1 style="color:brown"><marquee bgcolor="green">Book Your Rail</marquee></h1>
<table style="background-color:#7F8C8D;opacity:0.7;padding:55px;spacing:30px">
<tr>
<td>From:</td>
<td><input type="text" name=""railway" placeholder="Arrival" required</td></tr>
<tr>
<td>To:</td>
<td><input type="text" name="txt2" placeholder="Departure" 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>
<center><tr><td>Date oF Journey:<input type="date" value="dt" name="calender"></td></tr> </center>
<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>