-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTable.html
61 lines (40 loc) · 918 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>HTML Basic5</title>
</head>
<body>
<table border="1px">
<colgroup>
<col span="2" style="background:red;"/>
<col style="background:blue;"/>
</colgroup>
<thead style="background: green;">
<tr>
<th>Header1</th>
<th>Header2</th>
<th>Header3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 1</td>
<td>Data 1</td>
</tr>
<tr>
<td>Data 2</td>
<td>Data 2</td>
<td>Data 2</td>
</tr>
</tbody>
<tfoot style="background: yellow;">
<tr>
<td>Table data</td>
<td>Table data</td>
<td>Table data</td>
</tr>
</tfoot>
</table>
</body>
</html>