- <TABLE>: designates the beginning of a table and can include attributes to control the appearance
- </TABLE>: designates the end of a table
- <TR>: designates the beginning of a table row
- </TR>: designates the end of a table row
- <TD></TD>: defines a table cell
Below is an example of a very simple table:
| Event Date |
Event Name |
| Event Date 2 |
Event Name 2 |
<TABLE BORDER=1 WIDTH=100% CELLPADDING=15>
<TR>
<TD>Event Date</TD>
<TD>Event Name</TD>
</TR>
<TR>
<TD>Event Date 2</TD>
<TD>Event Name 2</TD>
</TR>
</TABLE>
- Example of table as a calendar: The Chaplaincy
- For more information on table layouts, visit the
Netscape documentation site on Tables at <http://home.netscape.com/assist/net_sites/tables.html>. Be sure to check the page of table examples at: <http://home.netscape.com/assist/net_sites/table_sample.html>.