-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 886 Bytes
/
index.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
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Time table</title>
</head>
<body>
<br><br>
<table border="1px" cellpadding="10" bgcolor="yellow">
<tr>
<th colspan="6"><b>CULTURAL DAY SOE</b></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>SENIOR SECTION</th>
<td>Special Assembly</td>
<td>Welcome chief guest</td>
<th rowspan="2">LUNCH</th>
<td>Stalls presentation</td>
<td> Cultural Meuseum</td>
</tr>
<tr>
<th>Jinnah Hall</th>
<td colspan="2"><center>Cultural stalls</center></td>
<td colspan="2"><center>Cultural Skits/Dance</center></td>
</tr>
</table>
</body>
</html>