-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathT3Q1.html
89 lines (89 loc) · 2.47 KB
/
T3Q1.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
u,h1
{
color: white;
}
table
{
background-color: yellow;
}
th
{
background-color: white;
text-align: center;
}
td
{
text-align: center;
}
</style>
</head>
<body bgcolor="gray">
<center><u><h1>Timetable</h1></u>
<table border="1">
<tr>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
</tr>
<tr>
<td rowspan="2">Maths</td>
<td>Geogrophy</td>
<td rowspan="3">Literature</td>
<td>Maths</td>
<td>Drama</td>
</tr>
<tr>
<td>IT</td>
<td>English</td>
<td>Dancing</td>
</tr>
<tr>
<td>Sinhala</td>
<td rowspan="2">Health</td>
<td rowspan="2">Music</td>
<td rowspan="2">Religion</td>
</tr>
<tr>
<td>English</td>
<td>IT Lab</td>
</tr>
<tr>
<td colspan="5" style="background-color:blue;color: red;">I n t e r v a l</td>
</tr>
<tr>
<td>Religion</td>
<td>Maths</td>
<td>Health</td>
<td>Tamil</td>
<td>IT</td>
</tr>
<tr>
<td rowspan="2">History</td>
<td rowspan="3">Drama</td>
<td rowspan="2">Library</td>
<td>IT Lab</td>
<td>Tamil</td>
</tr>
<tr>
<td>Sinhala</td>
<td rowspan="2">Art</td>
</tr>
<tr>
<td>Maths</td>
<td>Maths</td>
<td>Science</td>
</tr>
<tr>
<td colspan="5" style="background-color: greenyellow;">For more details:<a href="" style="color: red;">www.schoolnet.com/</a></td>
</tr>
</table>
</center>
</body>
</html>