HTML
Tables

Tables is a great way to make your pages look nicer.
With tables you can divide images and text into smaller selections.

The example below is a simple table with 3 images.

My Selections:

Tables HTML Frames

To make this table, you have to type the text below. You can use CAPITAL or small letters.
however the names of the images HAVE GOT to be written EXACTLY as they appear on your server:

<TABLE BORDER="4" WIDTH="210" HEIGHT="40" CELLSPACING="3" CELLPADDING="5" BGCOLOR="#a0a0a0">
<CAPTION><H3>MY SELECTIONS</H3></CAPTION>

<TR>
<TD ALIGN="CENTER" VALIGN="BOTTOM" BGCOLOR="LIGHTGREY">
<IMG NAME="tables" WIDTH="55" HEIGHT="17" ALIGN="BOTTOM" ALT="Tables" BORDER="0" SRC="tables.gif"></A></TD>

<TD ALIGN="CENTER" VALIGN="BOTTOM" BGCOLOR="LIGHTGREY">
<IMG NAME="html" WIDTH="55" HEIGHT="17" ALIGN="BOTTOM" ALT="HTML" BORDER="0" SRC="html.gif"></A></TD>

<TD ALIGN="CENTER" VALIGN="BOTTOM" BGCOLOR="LIGHTGREY">
<IMG NAME="frames" WIDTH="55" HEIGHT="17" ALIGN="BOTTOM" ALT="Frames" BORDER="0" SRC="frames.gif"></A></TD>
</TR>
</TABLE>

Explanation:

Table:
Border="4"     Size of the Table Border, 0 if none
Width="210"     The Width of the Table
Height="40"     The Hight of the Table
Cellspacing="3"     The Size of the space between each column
Cellpadding="5"     The Size of the space from the border to the Text inside it
Bgcolor="#a0a0a0"     The Color of the background (if not specified in the TD-tag)

TD (Column):
Align="center"     Place the text in Center of each column (Horizontal)
Valign="bottom"     Place the text at Bottom of each column (Vertical)
Width="75%"     The Width of the Column. This will make a column of 75% of the Table-width
Bgcolor="#a0a0a0"     Override the BGColor of the table for this column

Last Updated:     © 1996 2005 {Trond}   
Email