-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap_timetable.html
119 lines (115 loc) · 3.49 KB
/
bootstrap_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
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Class Timetable</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<style>
* {
text-transform: uppercase;
}
.timetable {
font-size: 14px;
text-align: center;
border: 3px solid black;
margin-top: 30px;
}
.timetable th,
.timetable td {
border: 3px solid black;
padding: 10px;
}
.lunch-break {
writing-mode: vertical-rl;
text-align: center;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h2 class="text-center my-4">Class Time Table for IT-1 V-Sem</h2>
<table class="table timetable">
<thead>
<tr class="bg-secondary">
<th rowspan="2">Period</th>
<th>I</th>
<th>II</th>
<th>III</th>
<th class="lunch-break" rowspan="6"></th>
<th>IV</th>
<th>V</th>
<th>VI</th>
</tr>
</thead>
<tbody>
<tr style="background-color: #168a31;">
<th>Day/Time</th>
<th>(9:10 to 10:10 AM)</th>
<th>(10:10 to 11:10 AM)</th>
<th>(11:15 to 12:15 PM)</th>
<th class="lunch-break" rowspan="7" style="background-color: #2797b3;">
<span style="color: red">Lunch Break </span>
(12:15 to 1:00 PM)
</th>
<th>(1:00 to 2:00 PM)</th>
<th>(2:00 to 3:00 PM)</th>
<th>(3:05 to 4:05 PM)</th>
</tr>
<tr>
<th class="bg-warning">Monday</th>
<td colspan="2">CT Lab (B1) / ML Lab (B2)</td>
<td>PE-2</td>
<td>CN</td>
<td>SE</td>
<td>EAD</td>
</tr>
<tr>
<th class="bg-warning">Tuesday</th>
<td>PE-2</td>
<td>ML</td>
<td>EAD</td>
<td>SE</td>
<td colspan="2">CN Lab (B1) / EAD Lab (B2)</td>
</tr>
<tr>
<th class="bg-warning">Wednesday</th>
<td>CN</td>
<td>EAD</td>
<td>FLAT</td>
<td>ML</td>
<td colspan="2">CC Lab (B1) / Sports (B2)</td>
</tr>
<tr>
<th class="bg-warning">Thursday</th>
<td>ML</td>
<td>CN</td>
<td>CT Lab (B2) / ML Lab (B1)</td>
<td>CT Lab (B2) / ML Lab (B1)</td>
<td>FLAT</td>
<td>SE</td>
</tr>
<tr>
<th class="bg-warning">Friday</th>
<td colspan="2">CN Lab (B2) / EAD Lab (B1)</td>
<td>PE-2</td>
<td>FLAT</td>
<td colspan="2">CC Lab (B2) / Sports (B1)</td>
</tr>
<tr>
<th class="bg-warning">Saturday</th>
<td>MENTORING</td>
<td colspan="2"></td>
<td colspan="3"></td>
</tr>
</tbody>
</table>
</div>
<h4 class="text-center my-4">1601-22-737-052</h4>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>