Realestate in Australia
Delta banner made by Mariaivy
Home
Table Home
Table 1
Table 2
Table 3

Simple Table Structure

Some attributes that apply to tables.
align="center" this used in TABLE tag will align table in the page, used in the TD tag aligns the content of that tag, can also be left or right
width="200" this is set and fixed at 200 pixels, you could also use percent setting by adding % after the size 25% remember max in percent is 100%. this used in TABLE tag will set table width, used in the TD tag sets width of that tag.
border="1" used in TABLE tag sets table border size.
cellspacing="0" used in TABLE tag sets cell spacing.
cellpadding="0" used in TABLE tag sets cell padding.
For an Example of Table using above attributes click Here

Basic Table

<TABLE width="200" border="1" cellspacing="0" cellpadding="0" align="center">
<TR>
<TD>Content goes here</TD>
</TR>
</TABLE>

Content goes here

2 Column Table

<TABLE width="200" border="1" cellspacing="0" cellpadding="0" align="center">
<TR>
<TD width="100">Content here</TD>
<TD width="100">and here</TD>
</TR>
</TABLE>
Content here and here

2 Row Table

<TABLE width="200" border="1" cellspacing="0" cellpadding="0" align="center">
<TR>
<TD>Content here</TD>
</TR>
<TR>
<TD>and here</TD>
</TR>
</TABLE>
Content here
and here

2 Row 2 column Table

<TABLE width="200" border="1" cellspacing="0" cellpadding="0" align="center">
<TR>
<TD width="100">Content here</TD>
<TD width="100">here</TD>
</TR>
<TR>
<TD width="100">here</TD>
<TD width="100">here</TD>
</TR>
</TABLE>
Content here here
here here

To Download these instructions
and play with them at your lesure
Click HERE

 

 

 

Valid HTML 4.01!