Table Tags: Step 2

Step 3 >>
The code creates a one-row table, with two cells in that row.
<table border="0" cellspacing="1" cellpadding="5" width="90%" align="center">
<tr> begin a new table ROW
  <td begin a new table CELL
    align="left" contents of this cell align to the left side
    valign="top" > contents of this cell push to the top of the cell
  </td> end the table CELL
  <td align="left" valign="top">
  </td>    
</tr>   end the table ROW
</table> end the table
< Back | HTML Index | Table Example | Copyright © 2003 Mindy McAdams. All Rights Reserved.