1<!DOCTYPE html>
2<html>
3<head>
4<style>
5table, th, td {
6 border: 1px solid black;
7}
8</style>
9</head>
10<body>
11
12<table style="width:50%;">
13 <tr>
14 <th>Month</th>
15 <th>Savings</th>
16 </tr>
17 <tr style="height:100px">
18 <td valign="top">January</td>
19 <td valign="bottom">$100</td>
20 </tr>
21</table>
22
23<p><b>Note:</b> The valign attribute is not supported in HTML5. Use CSS instead.</p>
24
25</body>
26</html>