-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.html
101 lines (93 loc) · 2.48 KB
/
table.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timetable</title>
</head>
<body style=background-color:black;color:white;>
<center>
<h1 style=color:aqua;>Time Table</h1>
</center>
<center>
<table border="10" width="80%" height="" cellpadding="30">
<tr>
<th>Day/Period</th>
<th>9:30-10:20</th>
<th>10:20-11:10</th>
<th>11:10-12:00</th>
<th>12:00-12:40</th>
<th>12:40-1:30</th>
<th>1:30-2:20</th>
<th>2:20-3:10</th>
<th>3:10-4:00</th>
</tr>
<tr>
<th>Monday</th>
<td>Eng</td>
<td>Maths</td>
<td>Sci</td>
<th rowspan="6" style=background-color:#DE3163;>
<img src="images/lunch.jpg" alt="wait" width="150">
<br>
<br>
<br>
L
<br>
U
<br>
N
<br>
C
<br>
H
</th>
<td >LAB</td>
<td>His</td>
<td>Geo</td>
<td>Urdu</td>
</tr>
<tr>
<th>Tuesday</th>
<td>His</td>
<td colspan="2" align="center" style=background-color:#00FF00;color:black;>Urdu</td>
<td>Eng</td>
<td>Sci</td>
<td>Maths</td>
<td>P.E</td>
</tr>
<tr>
<th>Wednesday</th>
<td>Maths</td>
<td>Urdu</td>
<td>Eng</td>
<td>Sci</td>
<td>LIB</td>
<td>His</td>
<td>Geo</td>
</tr>
<tr>
<th>Thursday</th>
<td>Sci</td>
<td>Eng</td>
<td>Urdu</td>
<td>LAB</td>
<td colspan="2" align="center" style=background-color:yellow;color:black;>Maths</td>
<td>P.E</td>
</tr>
<tr>
<th>Friday</th>
<td colspan="2" align="center" style=background-color:#40E0D0;color:black>Maths</td>
<td>Sci</td>
<td>A.R.T</td>
<td colspan="2" align="center">Urdu</td>
<td>Eng</td>
</tr>
</table>
</center>
<br><br><br><br><br>
<center>
<h1><a href="index.html" style=color:aqua;>Table</a></h1>
</center>
</body>
</html>