-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimetable.html
107 lines (99 loc) · 2.89 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
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<title>Time Table 3rd year even semister ECE</title>
</head>
<style>
table {
width: 100%;
}
table,
th,
td {
border-collapse: collapse;
border: 1px solid black;
text-align: center;
padding: 15px;
}
tr {
background-color: darkgray;
}
#even {
background-color: whitesmoke;
}
th {
background-color: black;
color: white;
}
</style>
<body style="background-color:white;text-align: center;">
<table>
<img src="National_Institute_of_Technology,_Warangal_logo.png" alt="NIT Warangal Logo">
<h1>NATIONAL INSTITUTE OF TECHNOLOFY WARANGAL</h1>
<h2>(An Institute of National Importance)</h2>
<h3 style="font-size: 27px;">Department of Electronics and Communication Engineering</h3>
<caption style="font-size: 20px;font-style: oblique;padding: 25px;">Time Table for ECE 3rd Year Even Semister</caption>
<thead>
<tr>
<th>Day\Time</th>
<th>8 AM - 9 AM</th>
<th>9 AM - 10 AM</th>
<th>10 AM - 11 AM</th>
<th>11:30 AM - 12:30 PM</th>
<th>12:30 PM - 2 PM</th>
<th>2 PM - 3 PM</th>
<th>3 PM - 4 PM</th>
</tr>
</thead>
<tr id="even">
<td>Mon</td>
<td></td>
<td>ITC</td>
<td colspan="2">DSP</td>
<td rowspan="5">Lunch Break</td>
<td colspan="2">CS Lab</td>
</tr>
<tr>
<td>Tue</td>
<td>OE</td>
<td>ITC</td>
<td colspan="2">DN</td>
<td colspan="2">DE</td>
</tr>
<tr id="even">
<td>Wed</td>
<td></td>
<td></td>
<td>OE</td>
<td>DSP</td>
<td colspan="2">DN Lab</td>
</tr>
<tr>
<td>Thu</td>
<td></td>
<td>DN</td>
<td>ITC</td>
<td>CS</td>
<td>ERTOS</td>
<td>DE</td>
</tr>
<tr id="even">
<td>Fri</td>
<td></td>
<td colspan="2">ERTOS</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Sat</td>
<td colspan="7">Refer Academic Calender</td>
</tr>
</table>
<p style="font-size: 18px;">ITC - Inormation Theory and Coding <br> DN - Data Networks <br>DSP - Digital Signal Processing
<br> ERTOS -Embedded and Real Time Operating Systems <br>DE - Department Elective <br>CS Lab - Communications Systems Lab
<br> DN Lab - Data Networks Lab <br> OE - Open Elective
</p>
</body>
</html>
</html>