-
Notifications
You must be signed in to change notification settings - Fork 7
/
table.html
76 lines (72 loc) · 2.18 KB
/
table.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
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Tables</title>
</head>
<body>
<table border="1" width="100%">
<tr>
<th>Color</th>
<th>Subcolor</th>
<th>Hex value</th>
<th>RGB value</th>
</tr>
<tr>
<td rowspan="3" bgcolor="blue">Blue</td>
<td>Baby Blue</td>
<td>#unknown</td>
<td>rgba(0,0,0)</td>
</tr>
<tr>
<td>Navy Blue</td>
<td>#unknown</td>
<td>rgba(0,0,0)</td>
</tr>
<tr>
<td>Ocean Blue</td>
<td>#unknown</td>
<td>rgba(0,0,0)</td>
</tr>
</table>
<hr>
<table border="1" width="100%">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2">Row 1 Cell #1</td>
<td>Row 1 Cell #3</td>
<td>Row 1 Cell #4</td>
</tr>
<tr>
<td>Row 2 Cell #1</td>
<td>Row 2 Cell #2</td>
<td colspan="2">Row 2 Cell #3</td>
</tr>
<tr>
<td rowspan="2" colspan="2">Row 3 Cell #1</td>
<td>Row 3 Cell #3</td>
<td>Row 3 Cell #4</td>
</tr>
<tr>
<td>Row 4 Cell #3</td>
<td>Row 4 Cell #4</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Footer Title 1</th>
<th>Footer Title 2</th>
<th>Footer Title 3</th>
<th>Footer Title 4</th>
</tr>
</tfoot>
</table>
</body>
</html>