-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTable.html
More file actions
64 lines (50 loc) · 1.01 KB
/
Table.html
File metadata and controls
64 lines (50 loc) · 1.01 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
62
63
64
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table border="5" Width="65%" align="center">
<tr>
<th colspan="6" height="35"> Time Table </th>
</tr>
<tr>
<th rowspan="6"> Hours </th>
<th height="35"> Mon </th>
<th height="35"> Tue </th>
<th height="35"> Wed </th>
<th height="35"> Thu </th>
<th height="35"> Fri </th>
</tr>
<tr>
<td> Science </td>
<td> Maths </td>
<td> Science </td>
<td> Maths </td>
<td> Arts </td>
</tr>
<tr>
<td> Social </td>
<td> History </td>
<td> English </td>
<td> Social </td>
<td> Sports </td>
</tr>
<tr>
<th colspan="5" height="35"> Lunch </th>
</tr>
<tr>
<td> Science </td>
<td> Maths </td>
<td> Science </td>
<td> Maths </td>
<td rowspan="2"> Project </td>
</tr>
<tr>
<td> Social </td>
<td> History </td>
<td> English </td>
<td> Social </td>
</tr>
</table>
</body>
</html>