forked from asimbyazid/Timetable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·95 lines (88 loc) · 1.74 KB
/
index.html
File metadata and controls
executable file
·95 lines (88 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<title>time</title>
<style type="text/css">
table,tr,th{
border:2px solid black;
border-collapse: collapse;
}
.one{
background-color: black;
color: white;
}
span{
}
table{
width:50%;
}
#three{
transform: rotate(90deg);
}
</style>
</head>
<body>
<table>
<tr class="one">
<th colspan="7">NUN,FNAS,COMPUTER SCIENCE DEPARTMENT</th>
</tr>
<tr>
<th colspan="7">2019/2020 sESSION, first Semester Timetable</th>
</tr>
<tr class="one">
<th colspan="2"></th>
<th>MONDAY</th>
<th>TUESDAY</th>
<th>WEDNESDAY</th>
<th>THURSDAY</th>
<th>FRIDAY</th>
</tr>
<tr>
<th rowspan="8" id="three">300 lEVEL Group1</th>
<th>9:00-10:00</th>
<th rowspan="3">WEB DEVELOPMENT</th>
<th rowspan="3">COMPUTER ARCHITECTURE</th>
<th rowspan="3">WEB PROGRAMMING LAB</th>
<th rowspan="3">NUMERICAL ANALYSIS</th>
<th></th>
</tr>
<tr>
<th>10:00-11:00</th>
<th></th>
</tr>
<tr>
<th>11:00-12:00</th>
<th></th>
</tr>
<tr>
<th>12:00-13:00</th>
<th></th>
<th></th>
<th rowspan="2">COMPUTER ARCHITECTURE LAB</th>
<th rowspan="2">OBJECT ORIENTED PROGRAMMING</th>
<th></th>
</tr>
<tr>
<th>13:00-14:00</th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<th>14:00-15:00</th>
<th rowspan="3">OPERATING SYSTEM</th>
<th rowspan="3">OBJECT ORIENTED PROGRAMMING</th>
<th></th>
<th rowspan="3">SYSTEM ANALYSIS</th>
<th rowspan="3">ENTREPRENEURAL</th>
</tr>
<tr>
<th>15:00-16:00</th>
<th rowspan="2">OBJECT ORIENTED PROGRAMMING LAB</th>
</tr>
<tr>
<TH>16:00-17:00</TH>
</tr>
</table>
</body>
</html>