<html>
<body>
<table>
<caption>Population by Country</caption>
<colgroup>
<col>
<col span="2" style="background-color:lightgreen">
<col>
</colgroup>
<thead>
<tr>
<th>Country</th>
<th>Pop</th>
<th>Pop 2030</th>
<th>% change</th>
</tr>
</thead>
<tbody>
<tr>
<td>China</td>
<td>1.38 billion</td>
<td>1.41 billion</td>
<td>2.1%</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Total</td>
<td>3 billion</td>
<td>3.3 billion</td>
<td>10%</td>
</tr>
</tfoot>
</table>
</body>
</html>