-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path9_ClassTable.html
96 lines (90 loc) · 3.05 KB
/
9_ClassTable.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
table{
width:100%;
border-collapse: collapse;
}
th,td{
border: 1px solid black;
padding: 8px;
text-align: center;
}
th{
background-color: #b3b0b0;
}
.break{
writing-mode: vertical-lr;
text-align: center;
font-size: 50px;
font-weight: bold;
}
</style>
</head>
<body>
<h3>Class Routine</h3>
<table>
<tr>
<th>Day/Time</th>
<th>10:30-11:30</th>
<th>11:30-12:30</th>
<th>12:30-1:30</th>
<th class="break"rowspan="7">BREAK</th>
<th>2:00-3:00</th>
<th>3:00-4:00</th>
</tr>
<tr>
<td>Sunday</td>
<td>OOP in Java <br> [Lecture] <br>S.P</td>
<td>System Analysis <br> [Lecture]<br> S.C</td>
<td>Data Structure <br> [Lecture] <br> S.S</td>
<td> Web Technology <br> [Lecture] <br> BC</td>
<td>Prob & Statistic <br> [Lecture] <br> JP Kapri</td>
</tr>
<tr>
<td>Monday</td>
<td>OOP in Java <br> [Lecture] <br> S.P</td>
<td>System Analysis <br> [Lecture] <br> S.C</td>
<td>Data Structure <br> [Lecture] <br> S.S</td>
<td>Web Technology <br> [Lecture] <br> BC</td>
<td>prob & Statistic <br> [Lecture] <br> JP Kapri</td>
</tr>
<tr>
<td>Tuesday</td>
<td>OOP in Java <br> [Lecture] <br> S.P</td>
<td>System Analysis<br> [Lecture] <br> S.C</td>
<td>Data Structure <br> [Lecture] <br> S.S</td>
<td>Web Technology <br> [Lecture] <br> BC</td>
<td>Prob & Statistic <br> [Lecture] <br> JP Kapri</td>
</tr>
<tr>
<td>Wednesday</td>
<td>OOP in Java <br> [Lecture] <br> S.P</td>
<td>System Analysis<br> [Lecture] <br> S.C</td>
<td>Data Structure <br> [Lecture] <br> S.S</td>
<td>Web Technology<br> [Lecture] <br> BC</td>
<td>Prob & Statistic <br> [Lecture] <br> JP Kapri</td>
</tr>
<tr>
<td>Thursday</td>
<td>OOP in Java <br> [Lecture] <br> S.P</td>
<td>Extra Professional <br> Training<br> TBA</td>
<td>Data Structure <br> [Lecture] <br> S.S</td>
<td>Web Technology <br> [Practial] <br> BC</td>
<td>Prob & Statustic <br> [Lecture] <br> JP Kapri</td>
</tr>
<tr>
<td>Friday</td>
<td>OOP in Java <br> [Practial] <br> S.P</td>
<td>Extra Professional<br> Training<br> TBA</td>
<td>Data Structure <br> [Lecture] <br> S.S</td>
<td>Web Technology <br> [Practial] <br> BC</td>
<td>Extra Professional <br> Training <br>TBA</td>
</tr>
</table>
</body>
</html>