-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain registration.html
35 lines (35 loc) · 1.31 KB
/
Main registration.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Registration</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="title">
Choose An Option
</div>
<form action="#">
<div class="field">
<a href="Tourist Registration.php"><input type="button" value="Tourist Registration"></a>
</div>
<div class="field">
<a href="Hotel Registration.php"><input type="button" value="Hotel Registration"></a>
</div>
<div class="field">
<a href="Flight Operator Registration.php"> <input type="button" value="Flight Operator Registration"></a>
</div>
<div class="field">
<a href="Bus Operator Registration.php"><input type="button" value="Bus Operator Registration"></a>
</div>
<div class="field">
<a href="Cab Operator Registration.php"><input type="button" value="Cab Operator Registration"></a>
</div>
<div class="field">
<a href="Cruise Operator Registration.php"> <input type="button" value="Cruise Operator Registration"></a>
</div>
</form>
</div>
</body>
</html>