Creating a Simple Table

Go to the Navigation pageHelpExitBackNext

The <TR> Tag
With the <TABLE> tag in place, the next thing you need is the <TR> tag. <TR> creates a table row, which contains one or more cells of information. To create these individual cells, you use the <TD> tag. <TD> stands for table data; you place the table information within the <TD> and </TD> tags.

 
...
<TR>
<TD>Any  table cell can contain text...</TD>
<TD><IMG SRC="graphics.gif"><BR>
<IMG SRC="table1.gif"></TD> <TD>...or both text and graphics.<P>
<IMG SRC="table2.gif"></TD> </TR>
</TABLE> </BODY></HTML>