In this overview of tags, I have used some simple rules to make the syntax clear. It also allows me to provide the information in a short format.
To illustrate the syntax rules, here's the section on IMG:
| Appearance: | <IMG SRC=URL> |
|---|---|
| Attributes: | SRC=URL, ALT=string, ALIGN=left|right|top|middle|bottom, HEIGHT=n, WIDTH=n, BORDER=n, HSPACE=n, VSPACE=n, USEMAP=URL, ISMAP |
| Contents: | None (Empty). |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
The first section, Appearance, gives a common way to use this tag. As you can see here, the IMG tag does not have an ending tag. If the beginning or ending tag appears inside square brackets, it is optional and may be left off.
The next section describes the attributes for the IMG tag. If an attribute appears in bold, it is required, otherwise it may be omitted. In the above case, SRC is required, but the other attributes are not. Note that the attributes themselves are listed in all caps, and the possible values (if possible) in lower case. Note that an attribute value must be quoted if it contains more than just letters, digits, hyphens and periods.
The contents section describes which tags are permitted inside this tag. For IMG, there are none. And last, you can see which tags allow IMG inside them.
The attributes and their values are noted in a very compact format as
well. The "|" character is used to separate mutually exclusive
attributes or values. For example, A=foo|bar indicates
that attribute "A" may get foo or bar as value, but not both, or
anything else. A= indicates
that you may use either A or B, but not both.
string|B=string
If an attribute can take more possible values than can be given in a list, the following special symbols are used:
n
p%
URL
string
#RRGGBB
| Appearance: | <ADDRESS> </ADDRESS> |
|---|---|
| Attributes: | None. |
| Contents: | P, TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The ADDRESS tag should be used to enclose contact information, addresses and the likes. It is often rendered with a slightly indented left margin and italics.
| Appearance: | <APPLET CODE=string HEIGHT=n WIDTH=n> </APPLET> |
|---|---|
| Attributes: | CODEBASE=URL, CODE=string, NAME=string, ALT=string, ALIGN=left|right|top|middle|bottom, HEIGHT=n, WIDTH=n, HSPACE=n, VSPACE=n |
| Contents: | PARAM, TEXTFLOW and TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
The APPLET tag is used to include Java applets. The CODE attribute indicates the location of the class of the applet itself. CODEBASE can be used to specify an absolute URL for the applet, similar to the BASE element for HTML documents. Other classes for this applet will be searched at the location indicated in CODEBASE. If this is not specified, the current URL will be used for the location. The NAME attribute gives the name of the applet.
Just like with IMG, WIDTH and HEIGHT are used to specify the width and height of the applet's window, and HSPACE and VSPACE control horizontal and vertical spacing around the applet. ALIGN sets the horizontal or vertical alignment for the applet.
Arguments to the applet can be specified with the PARAM tag, which goes inside the APPLET tag.
The ALT text may contain text which should be displayed if the applet cannot be run, but you should use the TEXTFLOW tag instead. This tag, which goes inside APPLET, may contain markup (unlike ALT, which may contain only text) so it is more powerful. However, as it is an optional tag, you may leave it off and insert the alternative text with markup directly inside the APPLET tags.
| Appearance: | <AREA SHAPE=x HREF=URL COORDS=string ALT=string> |
|---|---|
| Attributes: | SHAPE=rect|circle|poly|default, COORDS=string, NOHREF|HREF=URL, ALT=string |
| Contents: | None (Empty). |
| May occur in: | MAP. |
Inside the MAP tag, each "hotzone" in the client-side imagemap is defined with an AREA tag. The HREF attribute specifies the URL for the destination that should be chosen if this area was selected. If you specify NOHREF instead, this area won't do anything.
SHAPE and COORDS define the actual region. SHAPE can be a rectangle, circle, or polygon, and COORDS should contain a set of coordinates describing that shape. This is done with a comma separated list of numbers, enclosed in quotes. If SHAPE is set to DEFAULT, no coordinates need to be specified. The default area is what will be chosen if no others match. The syntax for COORDS depends on what shape you choose.
<AREA SHAPE=rect COORDS="0,0,9,9"> would specify
a rectangle of 10x10 pixels, starting in the top left corner of the image.
<AREA SHAPE=circle
COORDS="10,10,5"> would specify a circle with radius 5 at
location (10,10) in the image.
<AREA SHAPE=poly COORDS="10,50,15,20,20,50">
would specify a triangle, with edge locations (10,50), (15,20) and (20,50).
The ALT text is used by text browsers to present the URLs in the imagemap in a more readable fashion. If you leave those off, the browser can only display the "bare" URLs.
| Appearance: | <A HREF=URL> </A> |
|---|---|
| Attributes: | HREF=URL, NAME=string, REL=string, REV=string, TITLE=string |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text, but no nested anchors. |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
The anchor tag is the "glue" for hypertext documents. The enclosed text and/or image(s) will be selectable by the user, and doing so will take the user to the location specified in the HREF attribute. The TITLE attribute can be used to provide a description of that location, which is displayed by some browsers when the mouse moves over the URL.
The NAME attribute is used to set up "named anchors." The enclosed text will be marked as a "target" to which a browser can jump directly. For example, if you have "<A NAME="toc">Table of Contents</A>" and the user uses the URL "#toc" he will be taken to that line.
REL and REV are not widely used, although these attributes were already present in the HTML 2.0 specs. They are used to mark up relationships between the current document and the resource in the link. REL="foo" in document A, in a link pointing to B, indicates that document A has a relationship of "foo" with document B. REV="foo" indicates B has that relationship with A. Since these attributes are not widely used, there is no standard list of values for REL and REV.
| Appearance: | <BASE HREF=URL> |
|---|---|
| Attributes: | HREF=URL |
| Contents: | None (Empty). |
| May occur in: | HEAD. |
The BASE tag is used to indicate the correct location of the document. Normally, the browser already knows this location. But in cases such as a mirrored site, the URL used to get the document is not the one that should be used when resolving relative URLs. That's when you use the BASE tag. The required HREF attribute must contain a full URL which lists the real location of the document.
| Appearance: | <BIG> </BIG> |
|---|---|
| Attributes: | None. |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
The BIG tag (as well as SMALL) is new. A browser should draw the enclosed text in a larger font if available, and ignore the tag otherwise. Since this tag is new, support for it is not universal. The FONT tag can do the same, with SIZE="+1".
| Appearance: | <BLOCKQUOTE> </BLOCKQUOTE> |
|---|---|
| Attributes: | None. |
| Contents: | H1, H2, H3, H4, H5, H6, P, UL, OL, DIR, MENU, PRE, DL, DIV, CENTER, BLOCKQUOTE, FORM, HR, TABLE, ADDRESS, as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
If you are quoting more than a few lines from a document, use a BLOCKQUOTE to indicate this. Block quotations are often rendered with indented margins, and possibly in italics, although a rendering with the standard quotation symbol for E-mail, "> ", is of course also possible.
| Appearance: | [<BODY>] [</BODY>] |
|---|---|
| Attributes: | BACKGROUND=URL, BGCOLOR=#RRGGBB, TEXT=#RRGGBB, LINK=#RRGGBB, VLINK=#RRGGBB, ALINK=#RRGGBB |
| Contents: | H1, H2, H3, H4, H5, H6, P, UL, OL, DIR, MENU, PRE, DL, DIV, CENTER, BLOCKQUOTE, FORM, HR, TABLE, ADDRESS, as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | HTML. |
The BODY tag contains the actual contents of the document. That contents should consist of block elements only. You may put in plain text in the body, this is then assumed to be inside a P container.
The attributes contain the appearance of the document. The BACKGROUND attribute should point to the location of an image, which is used as the (tiled) background of the document. The other attributes set the colors for the background, text, links, visited links and active (currently being selected) links, using the order above.
The color is composed by specifying the red, green and blue components of the color in hexadecimal notation, with a # in front. For example, to specify white, the red, green and blue components are 255, 255, 255, so you would use "#FFFFFF".
The BODY tag is optional; if you put all the HEAD elements first, the browser can immediately see where the actual document body begins.
| Appearance: | <BR> |
|---|---|
| Attributes: | CLEAR=left|all|right|none |
| Contents: | None (Empty). |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
The BR tag is used to force line breaks within text. Normally, linebreaks are treated as a space by browsers (except inside the PRE tag). The optional CLEAR attribute is used when you have an IMG image in your text. If that image uses ALIGN=LEFT or ALIGN=RIGHT, the text will flow around it. If you have text you want below the image, you can do this with <BR CLEAR=LEFT> or CLEAR=RIGHT to force scrolling down to a clear left or right margin, respectively. Using CLEAR=ALL will scroll down until both marings are clear. CLEAR=NONE is the default, and does nothing.
| Appearance: | <B> </B> |
|---|---|
| Attributes: | None. |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
B is used to indicate that the enclosed text must be rendered in a bold typeface. It must be rendered distinct from I-italics text.
If you want to indicate strong emphasis, use the STRONG element instead. B should only be used when you want bold typeface for some other reason than to denote strong emphasis. While the two tags usually produce the same output, the B tag does not provide any reasons why the enclosed text is in boldface. This means an indexer or text-only browser cannot pick a good alternative. With STRONG this is possible.
| Appearance: | <CAPTION> </CAPTION> |
|---|---|
| Attributes: | ALIGN=top|bottom |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | TABLE. |
The CAPTION tag is used to provide a caption for a TABLE. This caption can either appear above or below the table. This can be indicated with the ALIGN attribute. It is usually centered with respect to the table itself, and usually appears in bold or otherwise emphasized.
The tag should appear directly below the TABLE tag, before the first TR.
| Appearance: | <CENTER> </CENTER> |
|---|---|
| Attributes: | None. |
| Contents: | H1, H2, H3, H4, H5, H6, P, UL, OL, DIR, MENU, PRE, DL, DIV, CENTER, BLOCKQUOTE, FORM, HR, TABLE, ADDRESS, as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The CENTER tag is one of the first Netscape extensions. It is used to indicate that large blocks of text should appear centered. In the Wilbur standard, it is defined as an alias for <DIV ALIGN=CENTER>.
The tag is more widely supported than the DIV method, as it was the first widely implemented Netscape extension to HTML 2.
| Appearance: | <CITE> </CITE> |
|---|---|
| Attributes: | None. |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
The CITE element indicates that the text enclosed is cited from some reference. It could be rendered with smart quotes, but usually a browser uses italics.
| Appearance: | <CODE> </CODE> |
|---|---|
| Attributes: | None. |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
CODE is used for snippets of code which appear inside a paragraph of text. It is usually rendered in a monospaced font. You can use this tag to mark up things like "<CODE>for ( ; ; ) ;</CODE> is a nice way to make an endless loop in C."
For larger blocks of code, use PRE instead. If what you are marking up is what a user should type in, use KBD.
| Appearance: | <DD> [</DD>] |
|---|---|
| Attributes: | None. |
| Contents: | P, UL, OL, DIR, MENU, PRE, DL, DIV, CENTER, BLOCKQUOTE, FORM, HR, TABLE, TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | DL. |
The DD tag is used inside a DL definition list to provide the definition of the text in the DT tag. It may contain block elements but also plain text and markup. The end tag is optional, as it's always clear from the context where the tag's contents ends.
A typical rendering is indented, one line below the DT, but this is not guaranteed.
| Appearance: | <DFN> </DFN> |
|---|---|
| Attributes: | None. |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
DFN is used to mark up terms which are used for the first time. These are often rendered in italics so the user can see this is where the term is used for the first time.
| Appearance: | <DIR> </DIR> |
|---|---|
| Attributes: | COMPACT |
| Contents: | LI. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The DIR element is similar to the UL element. It represents a list of short items, typically up to 20 characters each. Items in a directory list may be arranged in columns, typically 24 characters wide.
| Appearance: | <DIV ALIGN=foo> </DIV> |
|---|---|
| Attributes: | ALIGN=left|right|center |
| Contents: | H1, H2, H3, H4, H5, H6, P, UL, OL, DIR, MENU, PRE, DL, DIV, CENTER, BLOCKQUOTE, FORM, HR, TABLE, ADDRESS, as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The DIV tag is used to mark up divisions in a document. It can enclose paragraphs, headers and other block elements. Currently, you can only use it to set the default alignment for all enclosed block elements. Future standards will most likely include more options for DIV.
Just like with other block elements such as P or H1, you can specify left, right and centered alignment.
| Appearance: | <DL> </DL> |
|---|---|
| Attributes: | COMPACT |
| Contents: | DT, DD. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
DL is used to provide a list of items with associated definitions. Every item should be put in a DT, and its definition goes in the DD directly following it. This list is typically rendered without bullets of any kind.
While it is legal to have a DL with only DD or DT tags, it doesn't make much sense (what good is a definition without a term?) and you shouldn't expect it to get rendered as a normal list.
| Appearance: | <DT> [</DT>] |
|---|---|
| Attributes: | None. |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DL. |
The DT tag is used inside DL. It marks up a term whose definition is provide by the next DD. The DT tag may only contain text-level markup.
| Appearance: | <EM> </EM> |
|---|---|
| Attributes: | None. |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
EM is used to indicate emphasized text. While it is often rendered identical to I, italics, using EM rather than I is preferred. It allows the browser to distinguish between emphasized text and other text which can be drawn in italics (for example citations, CITE).
EM text should be rendered distinct from STRONG text.
| Appearance: | <FONT> </FONT> |
|---|---|
| Attributes: | SIZE=string, COLOR=#RRGGBB |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, H1, H2, H3, H4, H5, H6, P, LI, DT, DD, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, PRE, ADDRESS as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
The FONT tag can be used to change the appearance of the current block, in terms of size and color. The SIZE attribute can either take an absolute value, ranging from 1 (smallest) to 7 (largest), or a relative value. Using the latter will change the font relative to the current font size. For example, <FONT SIZE="+1"> will make the font size one step bigger.
The COLOR attribute takes a hex value, which is the RGB-notation of the desired color. See the section on BODY for a more detailed explanation on how to specify colors.
| Appearance: | <FORM ACTION=URL> </FORM> |
|---|---|
| Attributes: | ACTION=URL, METHOD=get|post, ENCTYPE=string |
| Contents: | H1, H2, H3, H4, H5, H6, P, UL, OL, DIR, MENU, PRE, DL, DIV, CENTER, BLOCKQUOTE, FORM, HR, TABLE, ADDRESS, as well as TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text, but no nested FORM. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
Forms allow a person to send data to the WWW server. You can use the INPUT, TEXTAREA and SELECT tags to add individual elements, such as checkboxes, input fields or "drop down" lists to your form. A form may contain all markup (both text and body level tags), but it may not have a nested form.
FORM has one required attribute, ACTION, specifying the URL of a CGI script which processes the form and sends back feedback. There are two methods to send form data to a server. GET, the default, will send the form input in an URL, whereas POST sends it in the body of the submission. The latter method means you can send larger amounts of data, and that the URL of the form results doesn't show the encoded form.
Although you can specify an encoding type with ENCTYPE, currently only "application/x-www-form-urlencoded" is supported. Once more types are developed, it will be useful to add this attribute.
<FORM ACTION="destination_url" METHOD=GET> <INPUT TYPE=submit NAME=foo VALUE="Go to destination"> </FORM>
| Appearance: | <H1> </H1> |
|---|---|
| Attributes: | ALIGN=left|right|center |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The level 1 heading is the most important header in the document. It should be rendered more prominently than any other header. It is usually used to indicate the title of the document. Often it has the same contents as the TITLE, although this is not required and not always a good idea. The title should be useful out of context (for example, in a bookmarks file) but the level 1 heading is only used inside the document.
The optional ALIGN attribute controls the horizontal alignment of the header. It can be LEFT, CENTER or RIGHT.
| Appearance: | <H2> </H2> |
|---|---|
| Attributes: | ALIGN=left|right|center |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The level 2 heading is the second most important header in the document. It should be rendered more prominently than a H3, but less prominently than a H1. It is often used to mark up chapters in a document.
The optional ALIGN attribute controls the horizontal alignment of the header. It can be LEFT, CENTER or RIGHT.
| Appearance: | <H3> </H3> |
|---|---|
| Attributes: | ALIGN=left|right|center |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The level 3 heading is the third most important header in the document. It should be rendered more prominently than a H4, but less prominently than a H2. It is often used to mark up sections inside a chapter in a document.
The optional ALIGN attribute controls the horizontal alignment of the header. It can be LEFT, CENTER or RIGHT.
| Appearance: | <H4> </H4> |
|---|---|
| Attributes: | ALIGN=left|right|center |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The level 4 heading should be rendered more prominently than a H5, but less prominently than a H3. It is often used to mark up subsections in a document.
The optional ALIGN attribute controls the horizontal alignment of the header. It can be LEFT, CENTER or RIGHT.
| Appearance: | <H5> </H5> |
|---|---|
| Attributes: | ALIGN=left|right|center |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The level 5 heading is the second least important header in the document. It should be rendered more prominently than a H6, but less prominently than a H4. Because it is often rendered in a small font, it is not used very often. It should be used to divide sections inside a H4.
The optional ALIGN attribute controls the horizontal alignment of the header. It can be LEFT, CENTER or RIGHT.
| Appearance: | <H6> </H6> |
|---|---|
| Attributes: | ALIGN=left|right|center |
| Contents: | TT, I, B, U, STRIKE, BIG, SMALL, SUP, SUB, EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, A, IMG, FONT, APPLET, BR, SCRIPT, MAP, INPUT, SELECT, TEXTAREA and plain text. |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
The level 6 heading is the least important header in the document. It should be rendered less prominently than a H5, but more prominently than normal text. Because it is often rendered in a small font, it is not used very often. It should be used to divide sections inside a H5.
The optional ALIGN attribute controls the horizontal alignment of the header. It can be LEFT, CENTER or RIGHT.
| Appearance: | [<HEAD>] [</HEAD>] |
|---|---|
| Attributes: | None. |
| Contents: | TITLE, ISINDEX, BASE, SCRIPT, STYLE, META, LINK. |
| May occur in: | HTML. |
The HEAD part of the document provides information about the document. It should not contain text or normal markup. If a browser encounters such markup, it will assume it has arrived in the BODY section of the document already.
| Appearance: | <HR> |
|---|---|
| Attributes: | ALIGN=left|right|center, NOSHADE, SIZE=n, WIDTH=n|p% |
| Contents: | None (Empty). |
| May occur in: | BODY, DIV, CENTER, BLOCKQUOTE, FORM, TD, TH, LI, and DD. |
HR is used to draw horizontal rules across the browser window. If the margins are currently smaller, for example because of images (IMG) which are placed against the margins, the rule will extend to these margins instead of the whole window. A horizontal rule is typically used to separate sections within a document.
In HTML 3.2, the appearance can be controlled more than in HTML 2. You can specify the thickness of the rule with the SIZE attribute, which takes an integer number of pixels. The width of the rule can be specified in number of pixels or as a percentage of the currently available window width, using the WIDTH attribute. Don't forget that percentage values must be quoted! The NOSHADE attribute is used to indicate that the rule should not get its usual shaded appearance, but instead should be drawn as a thick line.
| Appearance: | [<HTML>] [</HTML>] |
|---|---|
| Attributes: | VERSION=string |
| Contents: | HEAD followed by BODY. |
| May occur in: | (Not appliciable). |
The HTML tag is the outermost tag. It is not required and may safely be omitted. It indicates that the text is HTML (the version can be indicated with the optional VERSION attribute), but this information is almost never used by servers or browsers.
| Appearance: | <IMG SRC=URL> |
|---|---|
| Attributes: | SRC=URL, ALT=string, ALIGN=left|right|top|middle|bottom, HEIGHT=n, WIDTH=n, BORDER=n, HSPACE=n, VSPACE=n, USEMAP=URL, ISMAP |
| Contents: | None (Empty). |
| May occur in: | BODY, H1, |