Willcam's Comprehensive HTML Cross Reference


Old HTML 3.0 Tags

This document describes tags included in the abandoned HTML 3.0 draft and not incorporated into later darfts of HTML. They may have been implemented by some browsers, but should be considered obsolete.

Click here to skip over the explanatory material at the top of the page and jump straight to the tags.

This table:

Support: HTML:2.0, 3.0, 3.2  Netscape:1.1+  MS Explorer:1.0+
and these icons:
(HTML 3.0 Only) (HTML 3.2 Only) (Netscape Extension) (Microsoft Extension) (Microsoft Extension 3.0)

alert you to tags and attributes that are not supported by all browsers. The support page explains the table and the icons in detail.

Willcam Home Page

Finding your way around...

Not all HTML tags are in this single file. The comprehensive list has been split into the following eight categories:

We have also provided several indexes to help you navigate through this reference. In addition to our main indexes (the compact index and the complete index), there are four other indexes that list the tags according to the standards and browsers that support them.

Willcam Home Page

Willcam's Comprehensive HTML Cross Reference was created as a service to the Internet community, and forms part of Willcam's Internet and HTML curriculum. It represents a joint effort of The Willcam Group and Gregory Consulting and is Copyright 1995 and 1996, The Willcam Group Limited. Please report any errors or omissions to Kate Gregory.

Willcam Home Page

Abbreviation
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<ABBREV> text </ABBREV>

The abbreviation tag defines an abbreviation. It is typically displayed just like normal text, but is used by automatic indexers.

Willcam Home Page

Acronym
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<ACRONYM> text </ACRONYM>

The acronym tag defines an acronym. It is typically displayed just like normal text, but is used by automatic indexers.

Willcam Home Page

Author
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<AUTHOR> text </AUTHOR>
<AU>
text </AU>

The author tag defines text that names the author of a document. It is typically displayed just like normal text, but is used by automatic indexers.

Willcam Home Page

Banner
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<BANNER attributes </BANNER>

The banner element defines an image or block of text that does not scroll with the document and is displayed at the top of the screen as the user scrolls through the document. Details of the attributes are not yet available -- use a BANNER attribute in the LINK section of the HEAD.

Willcam Home Page

Credit
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<CREDIT> text </CREDIT>

The credit tag defines text that credits a figure or quote. It is valid only within FIG or BQ tags.

Willcam Home Page

Deleted Text
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<DEL> list entries </DEL>

The deleted text tag marks text that has been deleted, for example in a group authoring situation or a legal document.

Willcam Home Page

Figure
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<FIG attributes> figure-content </FIG>

See the OBJECT and MAP tags for an alternate to this tag.

The figure element is an improvement over the inline image used in HTML 2.0 for a variety of reasons. The text used to describe the figure for non-graphical browsers can contain markup tags, and a separate credit and caption will be displayed by both graphical and non-graphical browsers. It also makes imagemaps much easier to code and independent of the server. At the moment it isn't clear whether the built-in image maps of FIG or the client-side image maps of IMG with a USEMAP attribute will emerge as the long term alternative to server side image maps. The attributes of FIG are:

SRC="URL"
"URL" identifies the image source, typically a GIF or JPEG file.

ALIGN="alignment"
"alignment" should be one of TOP, MIDDLE, or BOTTOM. This causes the top, middle, or bottom of the image to be aligned with the text on the line containing the IMG tag.
(Netscape Extension) "alignment" should be one of LEFT, RIGHT, TOP, TEXTTOP, MIDDLE, ABSMIDDLE, BASELINE, BOTTOM, or ABSBOTTOM.

HEIGHT=number
This specifies the height of the image, according to the UNITS attribute.

WIDTH=number
This specifies the width of the image, according to the UNITS attribute.

UNITS=units
Here units is one of pixels, meaning the width and height are measured in pixels, or en, meaning the width and height are measured in en spaces. These units are not used for the shape co-ordinates of any anchor tags in the figure.

NOFLOW
Stops text from flowing around the figure.

IMAGEMAP="URL"
Points to a script that handles clicks and drags.

The figure-content contains the following optional elements, in this order:

<OVERLAY SRC="url">
<
CAPTION>caption-text</CAPTION>
Figure description text, including markup (headers, lists, etc.) to substitute for the image.
<A SHAPE="shape">link-text</A>
<CREDIT>credit-text</CREDIT>

The SHAPE attribute is one of:

This implements a figure with a built-in imagemap, freeing the browser from asking the server how to respond to a click. If the user clicks within the area defined by the anchor's SHAPE attribute, the link is followed. (If the click is outside all the defined shapes, the link identified as default is followed.) The numerical values provided are interpreted as pixels if they are integers, or as fractions of the screen width if they are not integers, with the origin at the top left corner of the figure. There is an intelligent mechanism for dealing with a click in an area that is in more than one shape anchor. If the browser does not display graphics, the figure description text is displayed, and some of it is highlighted as link text.

Willcam Home Page

Footnote
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<FN ID=anchor-name> text </FN>

The footnote tag defines a footnote, ideally displayed in a pop-up window. The text that refers to this footnote does so with a standard anchor tag using anchor-name.

Willcam Home Page

Horizontal Tab
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<TAB INDENT=number>
<TAB TO=
tab id ALIGN=align>
<TAB DP=
character>

The horizontal tab tag is used to set or jump to a horizontal tab. The INDENT attribute specifies the amount in en spaces to set this indent to. The align attribute can be one of LEFT, RIGHT, CENTER, or DECIMAL and will position the following text to the tab accordingly. The dp sets the tab to the position that the next character is found The default character is ".".

Willcam Home Page

Inserted Text
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<INS> text </INS>

The inserted text tag marks text that has been inserted, for example in a group authoring situation or a legal document.

Willcam Home Page

Language
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<LANG> text </LANG>

The language tag is used to alter the language used for a block of text.

Willcam Home Page

List Heading
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<LH> text </LH>

The list heading tag defines the heading for an ordered, unordered, or definition list. Other tags may be embedded in a list heading. It must come before any List Item (LI) or Definition Term (DT) tags in the list.

Willcam Home Page

Math
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<MATH> math-content </MATH>

The math tag introduces a description of an equation or formula. math-content is not yet fully defined.

Willcam Home Page

Note
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<NOTE> text </NOTE>
<NOTE CLASS=class> text </NOTE>
<NOTE SRC=
URL> text </NOTE>

The note tag defines text that forms a note. Many browsers display it in an indented block surrounded by blank lines with a graphic. The CLASS attribute specifies the type of note, such as a warning, caution, or note. The graphic used will be based on the CLASS. The SRC attribute can be used to override the graphic that would be used by default.

Willcam Home Page

Overlay
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<OVERLAY attributes>

Valid only within a figure (FIG), the overlay element speeds up image rendering by drawing small changes over a base figure. The attributes are:

SRC="URL"
Here "URL" identifies the image source, typically a GIF or JPEG file.

X=number
This specifies the offset to the right within the base image from the top left corner, according to the UNITS attribute.

Y=number
This specifies the offset to the bottom within the base image from the top left corner, according to the UNITS attribute.

HEIGHT=number
This specifies the height of the image, according to the UNITS attribute.

WIDTH=number
This specifies the width of the image, according to the UNITS attribute.

UNITS=units
Here units is one of pixels, meaning the width and height are measured in pixels, or en, meaning the width and height are measured in en spaces.

IMAGEMAP="URL"
Points to a script that handles clicks and drags.

Willcam Home Page

Person
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<PERSON> text </PERSON>

The person tag is used around names of people mentioned in a document. It is typically displayed just like normal text, but is used by automatic indexers

Willcam Home Page

Quote
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<Q> text </Q>

The quote tag defines text that should be displayed as a short quote. For English language documents this means the text will be surrounded with double quote (") symbols. Quotes nested within quotes will typically be displayed surround by single quote (') symbols.

Willcam Home Page

Range
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<RANGE FROM="from id" UNTIL="until id">

The range tag, which is valid only in the HEAD section, defines a range within the document. The FROM and UNTIL attributes refer to ID's of tags within the document. The SPOT tag can be used to specify a location in the document where there is no other tag.

Willcam Home Page

Spot
Support: HTML:3.0 Netscape:No Support MS Explorer:No Support


<SPOT ID="id">

The spot tag can be used to specify a location in the document where there is no tag.