
|
|
|||||||||||||||||
Tables TutorialLet'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:
This table uses the basic three tags all tables must have:
<TABLE BORDER=2> <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
In the next section we'll jazz up the table a little with some headers. Copyright Idocs, Inc. Written by Miko Sullivan |
|||||||||||||||||
| About the NetVisits, Inc Network | Advertise Developer Tutorials hosted by HostGator. Copyright ©2007 NetVisits, Inc Network. All Rights Reserved. Privacy Policy. |