Lets
check out some tables..shall we? It's pretty easy once
you get the first couple of tables incorporated into your
page. here we go!
This is what your
table code always begins with,you can set each value as
you see fit. Note that it's easier to set the width in
percentages as opposed to pixels.
<tr></tr>
This starts and ends a table row.
<td></td>
This tag starts and ends a table column.
</table>
This tag completes the table coding.
Here is a sample code:
<table
border=1 bgcolor=white align=left width=50% cellborder=1
cellspacing=1>
(tr)
<td>Row 1 Column 1</td>
<td>Row 1 Column 2
</tr></td>
<tr>
<td>Row2 column 1</td>
<td>Row2 column 2
</tr></td></table>
This code would give you the
following.Note:You still must have the title and body
information on a table page.
Row
1 Column1
|
Row1
Column2
|
Row2
Column1
|
Row
2 Column2
|
Now
that wasn't so bad, was it? :-P
|