blob: 031ade7f5b270d0e72262ae78300b4f882afde9c (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Test thead, tbody and tfoot</title>
<style>
.head {color: green; font-weight: bold; align: center; }
.body {color: blue;}
.foot {color: red;}
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr class="head">
<th>Month</th>
<th>Savings</th>
</tr>
<tr class="body">
<td>January</td>
<td>$100</td>
</tr>
<tr class="body">
<td>February</td>
<td>$80</td>
</tr>
<tr class="foot">
<td>Sum</td>
<td>$180</td>
</tr>
</table>
</body>
</html>
|