To Create a Simple Table:
1. Type <table border="0">
2. Type <tr> to define the beginning of the row.
3. Type <td> to define the beginning of the cell.
4. Type the contents of the cell for instance I typed:
Welcome To My Page in my first cell in the example below.
5. Type </td> to complete the cell.
6. Repeat steps 3-5 for each cell in the row.
7. Type </tr> to complete the row.
8. Repeat steps 2-7 for each row.
9. To finish the table, type </table>
To set the width and alignment of a cell or table:
1. In the <TD or <TABLE tage, type width=c, where c is the desired width
of the cell or of the entire table, in pixels.
2. In the <TD or <TABLE tag, type align=center. You can align your cell
to be either right, center, or left or valign=middle. You can align your
cell to be either top, middle, bottom, or baseline.
To span a cell across two columns:
1. When you get to the point in which you need to define the cell that spans more than one column, type <TD COLSPAN=c> where c equals the number of columns the cell should span.
2. Type the cell's contents.
3. Last type the closing </TD>