-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimetable.html
64 lines (55 loc) · 1.07 KB
/
timetable.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
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>
<style>
table, th, td {
border: 1px solid black;
}
</style>
<body>
<h2>Time table</h2>
<table style="width:100%" cellspacing="0">
<tr>
<th colspan = "6"> Time Table </th>
</tr>
<tr>
<td rowspan="6">Hours</td>
<td><strong>Monday</strong></td>
<td><strong>Tuesday</strong> </td>
<td><strong>Wednesday</strong> </td>
<td><strong>Thursday</strong></td>
<td><strong>Friday</strong> </td>
</tr>
<tr>
<td>Maths</td>
<td>Science </td>
<td>Math </td>
<td>ARTS</td>
<td>ARTS</td>
</tr>
<tr>
<td>science</td>
<td>Maths</td>
<td>Science </td>
<td>Math </td>
<td>ARTS</td>
</tr>
<tr>
<th colspan="6"> <strong>Lunch </strong></th>
</tr>
<tr>
<td>Science</td>
<td>Maths</td>
<td>Science </td>
<td>Math </td>
<td>ARTS</td>
</tr>
<tr>
<td>Social</td>
<td>History</td>
<td>English </td>
<td>Math </td>
<td>ARTS</td>
</tr>
</table>
</body>
</html>