-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
73 lines (73 loc) · 2.54 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="./css/bootstrap.css">
</head>
<body>
<script src="index.js"></script>
<table class="table">
<!--<caption>Schedule Table</caption>-->
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Arrival Date</th>
<th scope="col">Arrival Day</th>
<th scope="col">Hub</th>
<th scope="col">Departing A/P</th>
<th scope="col">Arriving A/P</th>
<th scope="col">Flight Type</th>
<th scope="col">Arrival Time</th>
<th scope="col">Arrival Carrier</th>
<th scope="col">Arrival Flight #</th>
<th scope="col">Arrival Gate</th>
<th scope="col">Deaprting Date</th>
<th scope="col">Departing Day</th>
<th scope="col">Return A/P</th>
<th scope="col">Depart Carrier</th>
<th scope="col">Depart Flight #</th>
<th scope="col">Departing Time</th>
<th scope="col"># of Vets</th>
<th scope="col"># of Guardians</th>
<th scope="col"># of W/C</th>
<th scope="col">Bus Company</th>
<th scope="col"># of Busses</th>
<th scope="col">Status</th>
<th scope="col">Updated</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
<td>@mdo</td>
</tr>
</tbody>
</table>
</body>
</html>