-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtable1.html
More file actions
37 lines (36 loc) · 914 Bytes
/
Copy pathtable1.html
File metadata and controls
37 lines (36 loc) · 914 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table border="1">
<thead>
<th>column 1</th>
<th>column 2</th>
<th>column 3</th>
</thead>
<tbody>
<tr>
<td rowspan="2">row 1 cell 1</td>
<td>row 1 cell 2</td>
<td>row 1 cell 3</td>
</tr>
<tr>
<td>row 2 cell 2</td>
<td>row 2 cell 3</td>
</tr>
<!-- <tr>
<td colspan="3">row 3 cell 1</td>
</tr> -->
</tbody>
<tfoot>
<tr>
<td colspan="3">row 3 cell 1</td>
</tr>
</tfoot>
</table>
</body>
</html>