Table Tags: Step 5

Start Over >>
  [See the Table]
The code creates a two-row table, with a cell in the top row that is the height of two cells (rows 1 and 2).
<table border="0" cellspacing="1" cellpadding="5" width="90%" align="center">
<tr>  
  <td rowspan="2" align="left" valign="top">
  </td>    
  <td align="left" valign="top">
  </td>    
</tr>   the attribute ROWSPAN tells a cell how many ROWs it should SPAN (vertically)
<tr>
  <td align="left" valign="top">
  </td>    
</tr>    
</table> end the table
< Back | HTML Index | Table Example | Copyright © 2003 Mindy McAdams. All Rights Reserved.