-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path03-tables.html
68 lines (64 loc) · 1.63 KB
/
03-tables.html
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
58
59
60
61
62
63
64
65
66
67
68
<!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>
<h1>Tables</h1>
<!-- <table>
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody></tbody>
<tfoot></tfoot>
</table> -->
<table border="2" width=100% cellpadding=10 cellspacing=10>
<tr>
<th>Heading_1</th>
<th>Heading_2</th>
<th>Heading_3</th>
<th>Heading_4</th>
<th>Heading_5</th>
</tr>
<tr>
<td>Column_1</td>
<td>Column_2</td>
<td>Column_3</td>
<td>Column_4</td>
<td>Column_5</td>
</tr>
<tr>
<td>Column_1</td>
<td colspan="4">Column_2</td>
<!-- <td>Column_3</td>
<td>Column_4</td>
<td>Column_5</td> -->
</tr>
<tr>
<td rowspan="3">Column_1</td>
<td>Column_2</td>
<td>Column_3</td>
<td>Column_4</td>
<td>Column_5</td>
</tr>
<tr>
<td>Column_1</td>
<td>Column_2</td>
<td>Column_3</td>
<td>Column_4</td>
<!-- <td>Column_5</td> -->
</tr>
<tr>
<td>Column_1</td>
<td>Column_2</td>
<td>Column_3</td>
<td>Column_4</td>
<!-- <td>Column_5</td> -->
</tr>
</table>
</body>
</html>