Let's begin with a simple and common use for tables: an office phone list. Suppose we have four people whose names we want on the list. The data could be arranged in a table like this:
<TABLE> <TR> <TD>Raha Mutisya</TD> <TD>1493</TD> </TR> <TR> <TD>Shalom Buraka</TD> <TD>3829</TD> </TR> <TR> <TD>Hallie Curry</TD> <TD>8372</TD> </TR> <TR> <TD>Shari Silberglitt</TD> <TD>4827</TD> </TR> </TABLE>
Which gives us this table:
| Raha Mutisya | 1493 |
| Shalom Buraka | 3829 |
| Hallie Curry | 8372 |
| Shari Silberglitt | 4827 |
This table uses the basic three tags all tables must have:
<TABLE ...>
<TABLE ...>
<TR ...>
<TR ...>
<TD ...>
<TD ...>
<TABLE BORDER=1> <TR> <TD>Raha Mutisya</TD> <TD>1493</TD> </TR> <TR> <TD>Shalom Buraka</TD> <TD>3829</TD> </TR> <TR> <TD>Hallie Curry</TD> <TD>8372</TD> </TR> <TR> <TD>Shari Silberglitt</TD> <TD>4827</TD> </TR> </TABLE>
which gives us
| Raha Mutisya | 1493 |
| Shalom Buraka | 3829 |
| Hallie Curry | 8372 |
| Shari Silberglitt | 4827 |
In the next section we'll jazz up the table a little with some headers.
Headers >>>