-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathass5.html
More file actions
61 lines (48 loc) · 1.76 KB
/
ass5.html
File metadata and controls
61 lines (48 loc) · 1.76 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>
<head>
<title> Table </title>
</head>
<body>
<table border="1" width="35%">
<tr height="40">
<th> </th>
<th> 9am </th>
<th> 10am </th>
<th> 11am </th>
<th> 12am </th>
</tr>
<tr height="40">
<th> Monday </th>
<td colspan="2" align="center"> Geography </td>
<td align="center"> Math </td>
<td align="center"> Art </td>
</tr>
<tr height="40">
<th> Tuesday </th>
<td colspan="3" align="center"> Gym </td>
<td align="center"> Home Ec </td>
</tr>
</table>
<br/> <br/><br/><br/>
<table border="1" width="35%">
<tr height="40">
<th> </th>
<th> ABC </th>
<th> BBC </th>
<th> CNN </th>
</tr>
<tr height="40">
<th> 6pm - 7pm </th>
<td rowspan="2" align="center"> Movie </td>
<td align="center"> Comedy </td>
<td align="center"> News </td>
</tr>
<tr height="40">
<th> 7pm - 8pm </th>
<td align="center"> Sport </td>
<td align="center"> Current Affairs </td>
</tr>
</table>
</body>
</html>