Tables are one of the most widely used items in all of web site building. Almost every page has some sort of table wether it be hidden or in many size borders. Borders of the tables may be any color also. Well lets get started.First we need to get the table started.
Any where after the <body> tag we can insert a table like this.
(this is just the very basic's)<body>
<table>
<tr>
<td>
</td>
<td>
</td>
</tr>
</table>This code states that the table is started
Then the <tr> is the table row
the <td> is the data in that row
Table data
Row1 Col 1Table data
Row1 Col 2Table data
Row2 Col 1Table data
Row 2 Col 2Now for a multiple column or row table you need this
<TABLE WIDTH=X BORDER=X ALIGN=LEFT CELLPADDING=X CELLSPACING=X COL=X BORDERCOLOR=X>
The table width says how wide the table is either in pixcel
fixed width or in percentages%
Table border= tells us how wide the border on the table is.
Align=(left, center, right) tells us where the table will be located
on the page.
Cellpadding= tells us the distance the items is from its self to the cell wall.
Cellspacing= is the distance between each cell
Bordercolor= can be changed to any color you may want
Cols= is also used to tell how many columns there is
Other items for tables is cellspan and rowspan
these tell how many rows or cells you want to span the default is 1
Besides Border color you have background color or a
background. It looks like this background="_ _ _" or for a
plain one go like this bgcolor="#_ _ _ _ "
- - - - - Hello everyone - - - - - - - - - - - - - the table is 65% border is 15 spacing is 5 padding is 5. The border is the same color as text, back ground is a brick wall.
Text is white and pink. cell spacing is default same as background.
So as you can see the table can be made in any way next is an invisable table. the same way.
Boat
whisky
barrelPalm Tree Cactus Tee Pee Buffalo This table values here are "0"
so that makes it hidden or invisable..
--