-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
36 lines (33 loc) · 909 Bytes
/
test.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
<!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>Test</title>
<style>
.boxx{
position: absolute;
width: 226px;
height: 92px;
left: 1000px;
top: 200px;
}
.btn{
margin-top: 10px;
}
</style>
</head>
<div class="boxx">
<p>Want to book a seat?</p>
<form name="f2" action="registration.php" method="POST">
<label>Enter BUS ID</label>
<br>
<input type="text" name="user" required />
<br>
<input type="submit" name="submit" value="Book" class="btn" />
<br>
</form>
</div>
</body>
</html>