HyperTextMarkupLanguage

HTML Advanced Functions


| Home | Agenda | Next |

TABLE - HTML Tables

Appearance: <TABLE> </TABLE>
Attributes: ALIGN=left|center|right, WIDTH=n|p%, BORDER[=n], CELLSPACING=n, CELLPADDING=n

The table element tells a Web Browser where a table in your HTML document begins and ends. The first and last tags in your table are always the TABLE tags.


CAPTION - Table Caption

Appearance: <CAPTION> </CAPTION>
Attributes: ALIGN=top|bottom,

The CAPTION tag is used to label a table. The ALIGN attribute specifies the position of the caption relative to the table.

Example:

        <TABLE>
        <CAPTION ALIGN=TOP>This Is A Table Caption</CAPTION>
        </TABLE>

| Home | Agenda | Next |

T10D011