-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimetable.html
85 lines (84 loc) · 3.27 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
<!DOCTYPE html>
<html>
<head>
<title>Tute03 - 2017356 - Web Design and Development Tutorial 02 – HTML I</title>
</head>
<body style="background-color:PowderBlue">
<h1 align="center">My Time Table: Thishura Himesh</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="myDetails.html">My Details</a></li>
<li><a href="timetable.html">My Timetable</a></li>
<li><a href="myMedia.html">My Media</a></li>
</ul>
<section>
<table style="height: 325px;" border="1" width="675" align="center">
<tbody>
<tr>
<td colspan="6">
<p>I am Currently taking the following modules:</p>
<ul>
<li>4COSC008C : Computer Science Practice</li>
<li>4COSC009C : Computer Systems Fundamentals</li>
<li>4COSC006C : Programming Principles 1</li>
<li>4MMCS006C : Web Design and Development</li>
<li>4COSC007C : Mathematics for Computing</li>
<li>ENGP001 : Preliminary English Program for Undergraduates</li>
</ul>
</td>
</tr>
<tr>
<th style="width:105px;"></th>
<th style="width:105px;">8:30-10:30</th>
<th style="width:105px;">10:30-12:30</th>
<th style="width:105px;">12:30-13:30</th>
<th style="width:105px;">13:30-15:30</th>
<th style="width:105px;">15:30-17:30</th>
</tr>
<tr>
<th style="width:105px;">Monday</th>
<td style="width:105px;background-color:green;text-align:center;">FREE</td>
<td style="width:105px;text-align:center;">Computer Science Practice<br />(LECTURE)</td>
<td style="width:105px;" rowspan="5">
<h4 align="center">LUNCH</h4>
</td>
<td style="width:105px;background-color:green;text-align:center;">FREE</td>
<td style="width:105px;text-align:center;">Web Design and Development<br />(TUTORIAL)</td>
</tr>
<tr>
<th style="width:105px;">Tuesday</th>
<td style="width:105px;text-align:center;">
<p>Mathematics for Computing<br />(LECTURE)</p>
</td>
<td style="width:105px;text-align:center;">Computer Science Practice<br />(TUTORIAL)</td>
<td style="width:105px;text-align:center;">Programming Principles 1<br />(TUTORIAL)</td>
<td style="width:105px;background-color:green;text-align:center;">FREE</td>
</tr>
<tr>
<th style="width:105px;">Wednesday</th>
<td style="width:105px;background-color: green;text-align:center;">FREE</td>
<td style="width:105px;text-align:center;">Programming Principles 1<br />(LECTURE)</td>
<td style="width:105px;background-color:green;text-align:center;" colspan="2">FREE</td>
</tr>
<tr>
<th style="width:105px;">Thursday</th>
<td style="width:105px;text-align:center;">Programming Principles 1<br />(TUTORIAL)</td>
<td style="width:105px;text-align:center;">Computer Systems Fundamentals<br />(LECTURE)</td>
<td style="width:105px;text-align:center;">Mathematics for Computing<br />(TUTORIAL)</td>
<td style="width:105px;background-color:green;text-align:center;">FREE</td>
</tr>
<tr>
<th style="width:105px;">Friday</th>
<td style="width:105px;text-align:center;">Computer Systems Fundamentals<br />(TUTORIAL)</td>
<td style="width:105px;text-align:center;">Web Design and Development<br />(LECTURE)</td>
<td style="width:105px;background-color:green;text-align:center;" colspan="2">FREE</td>
</tr>
</tbody>
</table>
</section>
<br />
<footer align="center">email: <a href="mailto:[email protected]">[email protected]</a><br />Last modified: 26th April 2019</footer>
</body>
</html>
</body>
</html>