-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons.html
36 lines (34 loc) · 1.06 KB
/
buttons.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
<HTML>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<BODY bgcolor="cyan">
<form method="POST" action="">
<H1>Tabs</H1> <br> <br>
<input name = "Flights Info" type="submit" value ="Flight Info"> <br> <br>
<input name = "Routes Info" type="submit" value ="Routes Info"> <br> <br>
<input name = "Runways Info" type="submit" value ="Runways Info"> <br> <br>
<input name = "Add Flight Details" type="submit" value ="Add Flight Details"> <br> <br>
<input name = "Arrival" type="submit" value ="Arrival"> <br> <br>
<input name = "Landing" type="submit" value ="Landing"> <br> <br>
<input name = "Shifting" type="submit" value ="Shifting"> <br> <br>
<input name = "Leaving" type="submit" value ="Leaving"> <br> <br>
<input name = "Takeoff" type="submit" value ="Takeoff"> <br> <br>
<input name = "Departure" type="submit" value ="Departure"> <br> <br>
</form>
</BODY>
</HTML>