-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBusDetails.html
63 lines (59 loc) · 1.36 KB
/
BusDetails.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
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
<style>
div {
margin-top: 100px;
height: auto;
width: 350px;
border: 2px bisque;
background: linear-gradient(#fb009f,#fe0202);
border-radius: 10px;
border-spacing: 2px;
font-family: 'Times New Roman', Times, serif;
}
form button{
border: none;
background: rgb(128, 128, 64);
padding: 10px 0;
margin-top: 5px;
color: #fff;
border-radius: 3px;
font-weight: bold;
text-transform: capitalize;
letter-spacing: 3px;
outline: none;
cursor: pointer;
}
form input{
margin-bottom: 5px;
border: 1px solid rgba(o, 0, 0, 0.4);
border-radius: 3px;
outline: none;
}
form input:focus{
border: 1px solid rgba(0,0,0,0.7);
background: #efefef;
}
input[type="text"],input[type="password"],input[type="email"]{
padding-left: 10px;
position: relative;
height: 15px;
font-size: 17px;
}
</style>
</head>
<body>
<center>
<div>
<form action="BusDetails" method="post">
<br><br><input type="text" placeholder="Enter your starting point" name="from"><br><br>
<input type="text" placeholder="Enter your destination" name="to"><br><br>
<input type="submit">
</form>
</div>
</center>
</body>
</html>