HTML/CSS/Basic Tags/height
"height" sets the height of an element in pixels
<HTML>
<BODY>
<table width="450" height="200">
<tr>
<th colspan="3" height="80">Header</th>
</tr>
<tr>
<td height="100">Cell 1</td>
</tr>
</table>
</BODY>
</HTML>