-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimetable.html
101 lines (98 loc) · 1.61 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
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
90
91
92
93
94
95
96
97
98
99
100
101
<head>
<style>
body{
background-image: url("bg.png");
background-repeat: no-repeat;
background-size: 100%;
}
table{
background-color:grey;
/* border-collapse: collapse; */
}
td{
width:15%;
background-color:white;
}
td{
text-align:center;
}
.break,.lunch{
background-color:yellow;
}
.day{
width:10%;
}
h1{
font-variant:small-caps;
}
</style>
</head>
<body>
<br><br><br>
<center>
<h1>Time Table 3H</h1>
<table height=50% width=75% border='1px solid black'>
<tr>
<th></th>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
<th>6</th>
<th>7</th>
<th>8</th>
<th>9</th>
</tr>
<tr>
<th class="day">Monday</th>
<td colspan="2">DE</td>
<td rowspan=6 class='break'>BREAK</td>
<td colspan=2>WT LAB</td>
<td>AI Discussion</td>
<td rowspan=6 class='lunch'>LUNCH</td>
<td colspan=2>CD(T)</td>
</tr>
<tr>
<th class="day">Tuesday</th>
<td>CD</td>
<td>AI</td>
<td colspan=2>WT LAB</td>
<td>CD Discussion</td>
<td>Couns</td>
<td>Minor/Honour</td>
</tr>
<tr>
<th class="day">Wednesday</th>
<td colspan="2">SS Lab</td>
<td colspan=2>WT LAB</td>
<td>WT Discussion</td>
<td colspan="2">OE</td>
</tr>
<tr>
<th class="day">Thursday</th>
<td colspan="2">DE</td>
<td colspan=2>AI</td>
<td>-</td>
<td>CD</td>
<td>LIB</td>
</tr>
<tr>
<th class="day">Friday</th>
<td>WT</td>
<td>CD</td>
<td colspan="2">IDP</td>
<td>-</td>
<td colspan="2">Minor/Honour</td>
</tr>
<tr>
<th class="day">Saturday</th>
<td>AI</td>
<td>WT</td>
<td colspan="2">Minor/Honour</td>
<td>-</td>
<td colspan="2">OE</td>
</tr>
</table>
</center>
</body>