-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (51 loc) · 1.18 KB
/
index.html
File metadata and controls
61 lines (51 loc) · 1.18 KB
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
<!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>Tables</title>
</head>
<body>
<a href="marksheet.html">MARKSHEET</a>
<br>
<br>
<a href="purchase.html">PURCHASE ORDER</a>
<br>
<br>
<table border="1">
<tr>
<th colspan="5">Athletics day time table </th>
</tr>
<tr>
<th>Area</th>
<th>10am-11am</th>
<th>11am-12pm</th>
<th>12pm-1pm</th>
<th>1pm-2pm</th>
<th>2pm-3pm</th>
</tr>
<tr>
<th rowspan="2">Track</th>
<td>400am</td>
<td>200am</td>
<th rowspan="3">Lunch</th>
<td>800am</td>
<td>100am</td>
</tr>
<tr>
<td>Hurdles</td>
<td>1500</td>
<td>Free</td>
<td>80</td>
</tr>
<tr>
<th>Field</th>
<td>discus</td>
<td>javelin</td>
<td>shot put</td>
<td>hammer throw</td>
</tr>
</table>
</body>
</html>