forked from DevaGaneshB/HTML
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTimeTable.HTML
More file actions
138 lines (138 loc) · 3.83 KB
/
TimeTable.HTML
File metadata and controls
138 lines (138 loc) · 3.83 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!-- Timetable using table in HTML-->
<html>
<head>
<title>TimeTable</title>
<h2><center>Department of Information Technology</center></h2>
<h2><center>Year:III Sem:V<br>Time Table<br></center></h2>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table align="center">
<tr align="center">
<th>Day/Period</th>
<th>1</th>
<th>2</th>
<th></th>
<th>3</th>
<th>4</th>
<th>5</th>
<th></th>
<th>6</th>
<th>7</th>
</tr>
<tr align="center">
<td>TUESDAY</td>
<td style="background-color:RED">IT6501 </td>
<td style="background-color:PINK"><-</td>
<td rowspan="5">B<br>R<br>E<br>A<br>K</td>
<td colspan="2" style="background-color:PINK">IT6513 LAB-></td>
<td style="background-color:ORANGE">CS6551</td>
<td rowspan="5">L<br>U<br>N<br>C<br>H</td>
<td style="background-color:violet">IT6502</td>
<td style="background-color:Blue">IT6503</td>
</tr>
<tr align="center">
<td>WEDNESDAY</td>
<td style="background-color:violet">IT6502 </td>
<td style="background-color:Purple">CS6502</td>
<td style="background-color:Cyan">EC6801</td>
<td style="background-color:Purple">CS6502</td>
<td style="background-color:brown"><-</td>
<td colspan="2" style="background-color:brown">IT6512 LAB-></td>
</tr>
<tr align="center">
<td>THURSDAY</td>
<td style="background-color:Cyan">EC6801</td>
<td style="background-color:Grey">LIB</td>
<td style="background-color:ORANGE">CS6551</td>
<td style="background-color:Blue">IT6503</td>
<td style="background-color:RED">IT6501</td>
<td colspan="2" style="background-color:PaleGreen">VAP</td>
</tr>
</tr>
<tr align="center">
<td>FRIDAY</td>
<td style="background-color:Purple">CS6502</td>
<td style="background-color:ORANGE">CS6511</td>
<td style="background-color:Cyan">EC6801</td>
<td style="background-color:RED">IT6501</td>
<td style="background-color:indigo"><-</td>
<td colspan="2" style="background-color:indigo">IT6511 LAB-></td>
</tr>
</tr>
<tr align="center">
<td>SATURDAY</td>
<td style="background-color:Blue">IT6503</td>
<td style="background-color:Blue">IT6503</td>
<td style="background-color:RED">IT6501</td>
<td style="background-color:ORANGE">CS6551</td>
<td style="background-color:violet">IT6502</td>
<td style="background-color:violet">IT6502(T) </td>
<td style="background-color:Cyan">EC6801</td>
</tr>
</table>
<br><br>
<table align="center">
<th>Sub Code</th>
<th>Sub Name</th>
<th>Faculty Name</th>
<tr align="center" style="background-color:ORANGE">
<td>CS6551</td>
<td>Computer Networks</td>
<td>Mrs.S.Pramila</td>
</tr>
<tr align="center" style="background-color:RED">
<td>IT6501</td>
<td>Graphics And Multimedia</td>
<td>Mrs.M.Leela</td>
</tr>
<tr align="center" style="background-color:Purple">
<td>CS6502</td>
<td>Object Oriented Analysis And Design</td>
<td>Mrs.R.Abirami</td>
</tr>
<tr align="center" style="background-color:violet">
<td>IT6502</td>
<td>Digital Signal Processing</td>
<td>Mrs.Vanathi</td>
</tr>
<tr align="center" style="background-color:Blue">
<td>IT6503</td>
<td>Web Programming</td>
<td>Mr.M.Ashok</td>
</tr>
<tr align="center" style="background-color:Cyan">
<td>EC6801</td>
<td>Wireless Communication</td>
<td>Mrs.Arunajayashree</td>
</tr>
<tr align="center" style="background-color:indigo">
<td>IT6511</td>
<td>Network Lab</td>
<td>Mrs.S.Pramila,Mrs.M.vinodhini</td>
</tr>
<tr align="center" style="background-color:brown">
<td>IT6512</td>
<td>Web Programming Lab</td>
<td>Mr.M.Ashok,Mr.S.Sathyan</td>
</tr>
<tr align="center" style="background-color:PINK">
<td>IT6513</td>
<td>Case Tools Lab</td>
<td>Mrs.R.Abirami,Mrs.J.Rebekah</td>
</tr>
<tr align="center" style="background-color:PaleGreen">
<td colspan="2">VAP</td>
<td>Mrs.J.Rebekahol</td>
</tr>
<tr align="center" style="background-color:Grey">
<td colspan="2">Lib</td>
<td>Mrs.R.Abirami</td>
</tr>
</table>
</body>
</html>