-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtime table.html
More file actions
57 lines (49 loc) · 1.49 KB
/
Copy pathtime table.html
File metadata and controls
57 lines (49 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Time table</title>
</head>
<body>
<caption>Time table of collage</caption>
<table border="5">
<tr>
<th>Week days</th>
<th>1st period</th>
<th>2nd period</th>
<th>3rd period</th>
<th> break </th>
<th>4th period</th>
<th>5th period</th>
<th>6th period</th>
</tr>
<tr>
<td>Monday</td>
<td>c programing</td>
<td>py programing</td>
<td>java programing</td>
<td rowspan="3"></td>
<td>react class</td>
<td>js class</td>
<td>sql class</td>
</tr>
<tr>
<td>Tuesday</td>
<td>c programing</td>
<td>py programing</td>
<td>java programing</td>
<td>react class</td>
<td>js class</td>
<td>sql class</td>
</tr>
<tr>
<td>wedness day</td>
<td>c programing</td>
<td>py programing</td>
<td>java programing</td>
<td>react class</td>
<td>js class</td>
<td>sql class</td>
</tr>
</table>
</body>
</html>