-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
52 lines (51 loc) · 862 Bytes
/
Copy pathtable.html
File metadata and controls
52 lines (51 loc) · 862 Bytes
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
<html>
<head>
<title></title>
</head>
<body>
<table width="400" cellpadding="10" cellspacing="5">
<tr>
<th></th>
<th scope="col">A</th>
<th scope="col">i</th>
</tr>
<tr>
<th scope="row">B</th>
<td>AB</td>
<td>B</td>
</tr>
<tr>
<th scope="row">i</th>
<td>A</td>
<td>O</td>
</tr>
</table>
<table border="2" bgcolor="orange">
<tr>
<th></th>
<th scope="col">Monday</th>
<th scope="col">Tuesday</th>
<th scope="col">Wednesday</th>
</tr>
<tr>
<th scope="row">9-10</th>
<td colspan="2">Art</td>
<td>Sport</td>
</tr>
<tr>
<th scope="row">10-11</th>
<td>Math</td>
<td>Chinese</td>
<td rowspan="2">HTML</td>
</tr>
<tr>
<th scope="row">11-12</th>
<td>Music</td>
<td>Science</td>
</tr>
</table>
<p>
<a href="index.html">Back to Home</a>
</p>
</body>
</html>