-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimeTable.html
More file actions
53 lines (50 loc) · 948 Bytes
/
TimeTable.html
File metadata and controls
53 lines (50 loc) · 948 Bytes
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
<!--
Function Name:TimeTable
Description:Display TimeTable of College
Date:29/06/2021
Author: Shubham Lodha -->
<html>
<table align="center" border="1">
<tr>
<td colspan="6" align="center"><b>Time table</b></td>
</tr>
<tr>
<td rowspan="6" align="center"><b>Hours</td>
<td align="center"><b>Mon</b></td>
<td align="center"><b>Tue</b></td>
<td align="center"><b>Wed</b></td>
<td align="center"><b>Thurs</b></td>
<td align="center"><b>Fri</b></td>
</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>
<td colspan="5" align="center"><b>Lunch</b></td>
</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>
</html>