-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
51 lines (46 loc) · 1.44 KB
/
table.html
File metadata and controls
51 lines (46 loc) · 1.44 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
<html>
<head>
<body>
<table border="8" cellspacing="5" cellpadding="5">
<tr>
<th colspan="5">Weekly class Time Table</th>
</tr>
<tr>
<th rowspan="2">Day</th>
<th colspan="4">Time</th>
</tr>
<tr>
<td>9:00-10:00</td>
<td>10:00-11:00</td>
<td>11:00-12:00</td>
<td>12:00-1:00</td>
</tr>
<tr>
<th>MONDAY</th>
<td>HTML</td>
<td>CSS</td>
<td rowspan="2">Javascript</td>
<td>Practice</td>
</tr>
<tr>
<th>TUESDAY</th>
<td>HTML</td>
<td>CSS</td>
<td>Practice</td>
</tr>
<tr>
<th>WEDNESDAY</th>
<td colspan="2">Lab work</td>
<td>Javascript</td>
<td>Test</td>
</tr>
<tr>
<th >THURSDAY</th>
<td >CSS</td>
<td>HTML</td>
<td colspan="2">Project work</td>
</tr>
</table>
</body>
</head>
</html>