Example - Table #1
Here's a very simple table:
Table #1
Billy | Joe | Jim | Bob |
65 | 95 | 99 | 87 |
<TABLE BORDER>
<CAPTION> Table #1 </CAPTION>
<TR><TH> Billy </TH><TH> Joe </TH><TH> Jim </TH><TH> Bob </TH></TR>
<TR><TD> 65 </TD><TD> 95 </TD><TD> 99 </TD><TD> 87 </TD></TR>
</TABLE>
Notes:
- The table is displayed with a border if the attribute BORDER is present in the TABLE tag.
- The CAPTION may appear anywhere within the TABLE definition, but for clarity, it should be the first statement in the TABLE.
- TD cells default to being left justified text.
- TH cells default to being center justified bold text.
[Back] [Forward]
|