Creating a Simple Table

Go to the Navigation pageHelpExitBackNext

Cells are Independent
You can place virtually any other HTML element into a table cell. However, tags used in one cell don't carry over to other cells, and tags from outside the table don't apply within the table. For example, in this code, The word "There" would be normal-sized because neither the <FONT> tag outside the table nor the <FONT> tag from the previous cell affects it.

 
...
<FONT SIZE=5>
<TABLE><TR>
<TD><FONT SIZE=6>Hello</TD>
<TD>There</FONT></TD>
</TR></TABLE>
</FONT>
...