-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable1.html
More file actions
38 lines (38 loc) · 938 Bytes
/
table1.html
File metadata and controls
38 lines (38 loc) · 938 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
<table border="3" cellspacing="4" cellpadding="4">
<thead>
<th>column 1</th>
<th>column 2</th>
<th>column 3</th>
<th>column 4</th>
<th>column 5</th>
</thead>
<tbody>
<tr>
<td rowspan="6">system</td>
<td rowspan="4">system apps</td>
<td rowspan="3"> system env</td>
<td>app test</td>
<td rowspan="2">foo</td>
</tr>
<tr>
<td>app memory</td>
</tr>
<tr>
<td>app test</td>
<td rowspan="2">food</td>
</tr>
<tr>
<td>system env 2</td>
<td>app memory</td>
</tr>
<tr>
<td rowspan="2" colspan="2">system memory</td>
<td>memory fuse</td>
<td>meal</td>
</tr>
<tr>
<td>apes test</td>
<td>foo</td>
</tr>
</tbody>
</table>