This document is an Internet draft. Internet drafts are working documents of the Internet Engineering Task Force (IETF), its areas, and its working groups. Note that other groups may also distribute working documents as Internet drafts.
Internet drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet drafts as reference material or to cite them other than as "work in progress."
To learn the current status of any Internet-Draft, please check the "1id-abstracts.txt" listing contained in the Internet- Drafts Shadow Directories on ftp.is.co.za (Africa), nic.nordu.net (Europe), munnari.oz.au (Pacific Rim), ds.internic.net (US East Coast), or ftp.isi.edu (US West Coast).
Distribution of this document is unlimited. Please send comments to the HTML working group (HTML-WG) of the Internet Engineering Task Force (IETF) at <html-wg@oclc.org>. Discussions of the group are archived at URL: http://www.acl.lanl.gov/HTML_WG/archives.html.
HyperText Markup Language (HTML) is a simple markup language used to create hypertext documents that are portable from one platform to another. HTML documents are SGML documents with generic semantics that are appropriate for representing information from a wide range of applications. HTML markup can represent hypertext news, mail, documentation, and hypermedia; menus of options; database query results; simple structured documents with in-lined graphics; and hypertext views of existing bodies of information.
HTML has been in use by the World Wide Web (WWW) global information initiative since 1990. This specification corresponds to the legitimate capabilities of HTML in common use prior to June 1994. It is defined as an application of ISO Standard 8879:1986 Information Processing Text and Office Systems; Standard Generalized Markup Language (SGML). This specificiation is proposed as the Internet Media Type (RFC 1590) and MIME Content Type (RFC 1521) called "text/html", or "text/html; version=2.0".
HTML describes the structure and organization of a document. It only suggests appropriate presentations of the document when processed.
In HTML documents, tags define the start and end of headings, paragraphs, lists, character highlighting and links. Most HTML elements are identified in a document as a start tag, which gives the element name and attributes, followed by the content, followed by the end tag. Start tags are delimited by < and >, and end tags are delimited by </ and >.
Example:
<H1>This is a heading</H1>Every HTML document starts with a HTML document identifier which contains two sections, a head and a body. The head contains HTML elements which describe the documents title, usage and relationship with other documents. The body contains other HTML elements with the entire text and graphics of the document.
This overview briefly describes the syntax of HTML elements and provides an example HTML document.
The HTML identifier defines the document as containing HTML elements. It contains only the Head and Body elements.
The Head element contains HTML elements that describe the documents title, usage and relationship with other documents.
The Body element contains the text and its associated HTML elements of the document.
<HTML> <HEAD> <TITLE>The Document's Title</TITLE> </HEAD> <BODY> The document's text. </BODY>
An anchor specifies a link to another location (<A HREF>) or the value to use when linking to this location from another location (<A NAME>):
See <A HREF="http://www.hal.com/">HaL</A>'s information for more details. <A NAME="B">Section B</A> describes... ... See <A HREF="#B">Section B</A> for more information.
<ADDRESS> Newsletter editor<BR> J.R. Brown<BR> JimquickPost News, Jumquick, CT 01234<BR> Tel (123) 456 7890 </ADDRESS>
Place the <BODY> and </BODY> tags above and below the body of the text (not including the head) of your HTML document.
I think it ends <BLOCKQUOTE> <P>Soft you now, the fair Ophelia. Nymph, in thy orisons, be all my sins remembered. </BLOCKQUOTE> but I am not sure.
Every HTML document must have a head, which provides a title. Example:
<HTML> <HEAD> <TITLE>Introduction to HTML</TITLE> </HEAD>
<H1>This is a first level heading</H1> <P>There are six levels of headings. <H2>Second level heading</H2> <P>This text appears under the second level heading
Inserts a horizontal rule that spans the width of the document. Example:
<HR> <ADDRESS>, CERN</ADDRESS> </BODY>
An HTML document begins with an <HTML> tag and ends with the </HTML> tag.
Forces a line break:
Name<BR> Street address<BR> City, State Zip
<H1>This Heading Precedes the Paragraph</H1> <P>This is the text of the first paragraph. <P>This is the text of the second paragraph. Although you do not need to start paragraphs on new lines, maintaining this convention facilitates document maintenance. <P>This is the text of a third paragraph.
<PRE WIDTH="80"> This is an example of preformatted text. </PRE>
<TITLE>Title of document</TITLE>
<DL> <DT>Term<DD>This is the first definition. <DT>Term<DD>This is the second definition. </DL>
<DIR> <LI>A-H<LI>I-M <LI>M-R<LI>S-Z </DIR>
<MENU> <LI>First item in the list. <LI>Second item in the list. <LI>Third item in the list. </MENU>
<OL> <LI>Click the Web button to open the Open the URL window. <LI>Enter the URL number in the text field of the Open URL window. The Web document you specified is displayed. <LI>Click highlighted text to move from one link to another. </OL>
<UL> <LI>This is the first item in the list. <LI>This is the second item in the list. <LI>This is the third item in the list. </UL>
Suggests the rendering of the text in boldface. If boldface is not available, alternative mapping is allowed.
Specifies a citation; typically rendered as italic.
Indicates an inline example of code; typically rendered as monospaced.. Do not confuse with the <PRE> tag.
Provides typographic emphasis; typically rendered as italics.
Suggests the rendering of text in italic font, or slanted if italic is not available.
Indicates text typed by a user; typically rendered as monospaced.
Indicates a sequence of literal characters; typically rendered as monospaced..
Provides strong typographic emphasis; typically rendered as bold.
Specifies that the text be rendered in fixed-width font.
Indicates a variable name; typically rendered as italic.
Inserts the referenced graphic image into the document at the location where the element occurs.
Example:
<IMG SRC ="triangle.gif" ALT="Warning:"> Be sure to read these instructions.
The Form element contains nested elements (described below) which define user input controls and allow descriptive text to be displayed when the document is processed.
Takes these attributes: ALIGN, MAXLENGTH, NAME, SIZE, SRC, TYPE, VALUE. The type attribute can define these field types: CHECKBOX, HIDDEN, IMAGE, PASSWORD, RADIO, RESET, SUBMIT, TEXT.
For example:
<FORM METHOD="POST" action="http://www.hal.com/sample"> <P>Your name: <INPUT NAME="name" SIZE="48"> <P>Male <INPUT NAME="gender" TYPE=RADIO VALUE="male"> <P>Female <INPUT NAME="gender" TYPE=RADIO VALUE="female"> </FORM>
The Option element can only occur within a Select element. It represents one choice.
Select provides a list of choices.
<SELECT NAME="flavor"> <OPTION>Vanilla <OPTION>Strawberry <OPTION>Rum and Raisin <OPTION>Peach and Orange </SELECT>
Textarea defines a multi-line text entry input control. It contains the initial text contents of the control.
<TEXTAREA NAME="address" ROWS=64 COLS=6> HaL Computer Systems 1314 Dell Avenue Campbell California 95008 </TEXTAREA>
<HTML> <HEAD> <TITLE>Structural Example</TITLE> </HEAD> <BODY> <H1>First Header</H1> <P>This is a paragraph in the example HTML file. Keep in mind that the title does not appear in the document text, but that the header (defined by H1) does. <UL> <LI>First item in an unordered list. <LI>Second item in an unordered list. </UL> <P>This is an additional paragraph. Technically, end tags are not required for paragraphs, although they are allowed. You can include character highlighting in a paragraph. <I>This sentence of the paragraph is in italics.</I> <IMG SRC ="triangle.gif" alt="Warning:"> Be sure to read these instructions. </BODY> </HTML>
This specification also includes:
This specification is currently available on the World Wide Web at URL: http://www.hal.com/%7Econnolly/html-spec
Please send comments to the discussion list at: html-wg@oclc.org
Version 2.0 of the HTML specification introduces forms for user input of information, and adds a distinction between levels of conformance:
An accepted networking principle is to be conservative in that which one produces, and liberal in that which one accepts. HTML user agents should be liberal except when verifying code. HTML generators should generate strictly conforming HTML.
The behavior of HTML user agents reading HTML documents and discovering tag or attribute names which they do not understand should be to behave as though, in the case of a tag, the whole tag had not been there but its content had, or in the case of an attribute, that the attribute had not been present.
In Section 5., optional "deprecated" and "recommended" sections are used. Conformance with this specification is defined with these sections disabled. In the liberal spirit of Section 2.2, HTML user agents reading HTML documents should accept syntax corresponding to the specification with "deprecated" turned on. HTML user agents generating HTML may in the spirit of conservation, generate documents that conform to the specification with the "recommended" sections turned on.
The World Wide Web initiative (WWW) links information throughout the world. To do this, WWW uses the Internet Hypertext Transfer Protocol (HTTP), which allows transfer representations to be negotiated between client and server. Results are returned in a MIME body part.
HTML is one of the representations used by WWW, and is proposed as a MIME content type. The definition of the HTML Content-Type is text/html, and has three optional parameters:
HTML is an application of ISO Standard 8879:1986 -- Standard Generalized Markup Language (SGML). SGML is a system for defining structured document types, and markup languages to represent instances of those document types. The SGML declaration for HTML is given in Section 5.1. It is implicit among HTML user agents.
If the HTML specification and SGML standard conflict, the SGML standard is definitive.
Every SGML document has three parts:
An HTML document is like a text file, except that some of the characters are markup. Markup (tags) define the structure of the document.
To identify information as HTML, each HTML document should start with the prologue:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN//2.0">
Example:
<H1>This is a Heading</H1>Some elements only have a start tag without an end tag. For example, to create a line break, you use the <BR> tag. Additionally, the end tags of some other elements, such as Paragraph (<P>), List Item (<LI>), Definition Term (<DT>), and Definition Description (<DD>) elements, may be omitted.
The content of an element is a sequence of characters and nested elements. Some elements, such as anchors, cannot be nested. Anchors and character highlighting may be put inside other constructs.
In a start tag, the element name must immediately follow the tag open delimiter <.
The value of the attribute may be either:
<A HREF="http://host/dir/file.html">
<IMG SRC="image.ps" alt="First "real" example">The length of an attribute value is limited to 1024 characters after replacing entity and numeric character references.
<UL COMPACT="compact">can be written using a minimized syntax:
<UL COMPACT>
For example:
<HEAD> <TITLE>HTML Guide: Recommended Usage</TITLE> <!-- Id: Text.html,v 1.6 1994/04/25 17:33:48 connolly Exp --> </HEAD>
Only certain elements are allowed in the head of an HTML document. Elements that may be included in the head of a document are:
Level 0
The head of an HTML document is an unordered collection of information about the document. It requires the Title element between <HEAD> and </HEAD> tags in this format:
<HEAD> <TITLE>Introduction to HTML</TITLE> </HEAD>
The Base element allows the URL of the document itself to be recorded in situations in which the document may be read out of context. URLs within the document may be in a "partial" form relative to this base address.
Where the base address is not specified, the HTML user agent uses the URL it used to access the document to resolve any relative URLs.
The Base element has one attribute, HREF, which identifies the URL.
The Isindex element tells the HTML user agent that the document is an index document. As well as reading it, the reader may use a keyword search.
The document can be queried with a keyword search by adding a question mark to the end of the document address, followed by a list of keywords separated by plus signs.
The Link element indicates a relationship between the document and some other object. A document may have any number of Link elements.
The Link element is empty (does not have a closing tag), but takes the same attributes as the Anchor element.
Typical uses are to indicate authorship, related indexes and glossaries, older or more recent versions, etc. Links can indicate a static tree structure in which the document was authored by pointing to a "parent" and "next" and "previous" document, for example.
Servers may also allow links to be added by those who do not have the right to alter the body of a document.
The Nextid element is a parameter read by and generated by text editing software to create unique identifiers. This tag takes a single attribute which is the next document-wide alpha-numeric identifier to be allocated of the form z123:
<NEXTID N=Z27>When modifying a document, existing anchor identifiers should not be reused, as these identifiers may be referenced by other documents. Human writers of HTML usually use mnemonic alphabetical identifiers.
HTML user agents may ignore the Nextid element. Support for the Nextid element does not impact HTML user agents in any way.
Level 0
Every HTML document must contain a Title element. The title should identify the contents of the document in a global context, and may be used in a history lists and as a label for the window displaying the document. Unlike headings, titles are not typically rendered in the text of a document itself.
The Title element must occur within the head of the document, and may not contain anchors, paragraph tags, or highlighting. Only one title is allowed in a document.
The Meta element is used within the Head element to embed document meta-information not defined by other HTML elements. Such information can be extracted by servers/clients for use in identifying, indexing, and cataloging specialized document meta-information.
Although it is generally preferable to use named elements that have well-defined semantics for each type of meta-information, such as a title, this element is provided for situations where strict SGML parsing is necessary and the local DTD is not extensible.
In addition, HTTP servers can read the content of the document head to generate response headers corresponding to any elements defining a value for the attribute HTTP-EQUIV. This provides document authors a mechanism (not necessarily the preferred one) for identifying information that should be included in the response headers for an HTTP request.
Attributes of the Meta element:
<META HTTP-EQUIV="Expires" CONTENT="Tue, 04 Dec 1993 21:29:02 GMT"> <META HTTP-EQUIV="Keywords" CONTENT="Fred, Barney"> <META HTTP-EQUIV="Reply-to" content="fielding@ics.uci.edu (Roy Fielding)"> Expires: Tue, 04 Dec 1993 21:29:02 GMT Keywords: Fred, Barney Reply-to: fielding@ics.uci.edu (Roy Fielding)When the HTTP-EQUIV attribute is not present, the server should not generate an HTTP response header for this meta-information; e.g.,
<META NAME="IndexType" CONTENT="Service">Do not use the Meta element to define information that should be associated with an existing HTML element.
Example of an inappropriate use of the Meta element:
<META NAME="Title" CONTENT="The Etymology of Dunsel">Do not name an HTTP-EQUIV equal to a response header that should typically only be generated by the HTTP server. Some inappropriate names are "Server", "Date", and "Last-modified". Whether a name is inappropriate depends on the particular server implementation. It is recommended that servers ignore any Meta elements that specify HTTP-equivalents equal (case-insensitively) to their own reserved response headers.
The following elements may be included in the body of an HTML document:
Level 0
The Body element identifies the body component of an HTML document. Specifically, the body of a document may contain links, text, and formatting information within <BODY> and </BODY> tags.
Level 0
The Address element specifies such information as address, signature and authorship, often at the top or bottom of a document.
Typically, an Address is rendered in an italic typeface and may be indented. The Address element implies a paragraph break before and after.
Example of use:
<ADDRESS> Newsletter editor<BR> J.R. Brown<BR> JimquickPost News, Jumquick, CT 01234<BR> Tel (123) 456 7890 </ADDRESS>
Level 0
An anchor is a marked text that is the start and/or destination of a hypertext link. Anchor elements are defined by the <A> tag. The <A> tag accepts several attributes, but either the NAME or HREF attribute is required.
Attributes of the <A> tag:
See <A HREF="http://www.hal.com/">HaL</A>'s information for more details.
The <A HREF="document.html#glossary">glossary</A> defines terms used in this document.
<A NAME="coffee">Coffee</A> is an example of ...
...
An example of this is <A HREF="#coffee">coffee</A>.
<A NAME="drinks.html#coffee">
Level 0
The Blockquote element is used to contain text quoted from another source.
A typical rendering might be a slight extra left and right indent, and/or italic font. The Blockquote element causes a paragraph break, and typically provides space above and below the quote.
Single-font rendition may reflect the quotation style of Internet mail by putting a vertical line of graphic characters , such as the greater than symbol (>), in the left margin.
Example of use:
I think the poem ends <BLOCKQUOTE> <P>Soft you now, the fair Ophelia. Nymph, in thy orisons, be all my sins remembered. </BLOCKQUOTE> but I am not sure.
Level 0
HTML defines six levels of heading. A Heading element implies all the font changes, paragraph breaks before and after, and white space necessary to render the heading.
The highest level of headings is H1, followed by H2 ... H6.
Example of use:
<H1>This is a heading</H1> Here is some text <H2>Second level heading</H2> Here is some more text.The rendering of headings is determined by the HTML user agent, but typical renderings are:
Level 2 (all elements)
Character-level elements are used to specify either the logical meaning or the physical appearance of marked text without causing a paragraph break. Like most other elements, character-level elements include both opening and closing tags. Only the characters between the tags are affected:
This is <EM>emphasized</EM> text.Character-level tags may be ignored by minimal HTML applications.
Character-level tags are interpreted from left to right as they appear in the flow of text. Level 1 HTML user agents must render highlighted text distinctly from plain text. Additionally, EM content must be rendered as distinct from STRONG content, and B content must rendered as distinct from I content.
Character-level elements may be nested within the content of other character-level elements; however, HTML user agents are not required to render nested character-level elements distinctly from non-nested elements:
plain <B>bold <I>italic</I></B>may the rendered the same as
plain <B>bold </B><I>italic</I>Note that typical renderings for information type elements vary between applications. If a specific rendering is necessary, for example, when referring to a specific text attribute as in "The italic parts are mandatory", a formating element can be used to ensure that the intended rendered is used where possible.
Note that different information type elements may be rendered in the same way.
The Citation element specifies a citation; typically rendered as italics.
The Code element indicates an example of code; typically rendered as monospaced . Do not confuse with the Preformatted Text element.
The Emphasis element indicates typographic emphasis, typically rendered as italics.
The Keyboard element indicates text typed by a user; typically rendered as monospaced . It might commonly be used in an instruction manual.
The Sample element indicates a sequence of literal characters; typically rendered as monospaced.
The Strong element indicates strong typographic emphasis, typically rendered in bold.
The Variable element indicates a variable name; typically rendered as italic.
Character format elements are used to specify the format of marked text. Example of use:
The Bold element specifies that the text should be rendered in boldface, where available. Otherwise, alternative mapping is allowed.
The Italic element specifies that the text should be rendered in italic font, where available. Otherwise, alternative mapping is allowed.
The Teletype element specifies that the text should be rendered in fixed-width typewriter font.
<IMG>
Level 0
The Image element is used to incorporate in-line graphics (typically icons or small graphics) into an HTML document. This element cannot be used for embedding other HTML text.
HTML user agents that cannot render in-line images ignore the Image element unless it contains the ALT attribute. Note that some HTML user agents can render linked graphics but not in-line graphics. If a graphic is essential, you may want to create a link to it rather than to put it in-line. If the graphic is not essential, then the Image element is appropriate.
The Image element, which is empty (no closing tag), has these attributes:
<IMG SRC="triangle.gif" ALT="Warning:"> Be sure to read these instructions.
<A HREF="http://machine/htbin/imagemap/sample">
<IMG SRC="sample.gif" ISMAP>
</A>
<IMG SRC ="triangle.gif">Be sure to read these instructions.
HTML supports several types of lists, all of which may be nested.
Level 0
A definition list is a list of terms and corresponding definitions. Definition lists are typically formatted with the term flush-left and the definition, formatted paragraph style, indented after the term.
Example of use:
<DL> <DT>Term<DD>This is the definition of the first term. <DT>Term<DD>This is the definition of the second term. </DL>If the DT term does not fit in the DT column (one third of the display area), it may be extended across the page with the DD section moved to the next line, or it may be wrapped onto successive lines of the left hand column.
Single occurrences of a <DT> tag without a subsequent <DD> tag are allowed, and have the same significance as if the <DD> tag had been present with no text.
The opening list tag must be <DL> and must be immediately followed by the first term (<DT>).
The definition list type can take the COMPACT attribute, which suggests that a compact rendering be used, because the list items are small and/or the entire list is large.
Unless you provide the COMPACT attribute, the HTML user agent may leave white space between successive DT, DD pairs.The COMPACT attribute may also reduce the width of the left-hand (DT) column.
If using the COMPACT attribute, the opening list tag must be <DL COMPACT>, which must be immediately followed by the first <DT> tag:
<DL COMPACT> <DT>Term<DD>This is the first definition in compact format. <DT>Term<DD>This is the second definition in compact format. </DL>
Level 0
A Directory List element is used to present a list of items containing up to 20 characters each. Items in a directory list may be arranged in columns, typically 24 characters wide. If the HTML user agent can optimize the column width as function of the widths of individual elements, so much the better.
A directory list must begin with the <DIR> tag which is immediately followed by a <LI> (list item) tag:
<DIR> <LI>A-H<LI>I-M <LI>M-R<LI>S-Z </DIR>
Level 0
A menu list is a list of items with typically one line per item. The menu list style is more compact than the style of an unordered list.
A menu list must begin with a <MENU> tag which is immediately followed by a <LI> (list item) tag:
<MENU> <LI>First item in the list. <LI>Second item in the list. <LI>Third item in the list. </MENU>
Level 0
The Ordered List element is used to present a numbered list of items, sorted by sequence or order of importance.
An ordered list must begin with the <OL> tag which is immediately followed by a <LI> (list item) tag:
<OL> <LI>Click the Web button to open the Open the URL window. <LI>Enter the URL number in the text field of the Open URL window. The Web document you specified is displayed. <LI>Click highlighted text to move from one link to another. </OL>The Ordered List element can take the COMPACT attribute, which suggests that a compact rendering be used.
Level 0
The Unordered List element is used to present a list of items which is typically separated by white space and/or marked by bullets.
An unordered list must begin with the <UL> tag which is immediately followed by a <LI> (list item) tag:
<UL> <LI>First list item <LI>Second list item <LI>Third list item </UL>
Level 0
The Paragraph element indicates a paragraph. The exact indentation, leading, etc. of a paragraph is not defined and may be a function of other tags, style sheets, etc.
Typically, paragraphs are surrounded by a vertical space of one line or half a line. This is typically not the case within the Address element and or is never the case within the Preformatted Text element. With some HTML user agents, the first line in a paragraph is indented.
Example of use:
<H1>This Heading Precedes the Paragraph</H1> <P>This is the text of the first paragraph. <P>This is the text of the second paragraph. Although you do not need to start paragraphs on new lines, maintaining this convention facilitates document maintenance. <P>This is the text of a third paragraph.
Level 0
The Preformatted Text element presents blocks of text in fixed-width font, and so is suitable for text that has been formatted on screen.
The <PRE> tag may be used with the optional WIDTH attribute, which is a Level 1 feature. The WIDTH attribute specifies the maximum number of characters for a line and allows the HTML user agent to select a suitable font and indentation. If the WIDTH attribute is not present, a width of 80 characters is assumed. Where the WIDTH attribute is supported, widths of 40, 80 and 132 characters should be presented optimally, with other widths being rounded up.
Within preformatted text:
<PRE WIDTH="80"> This is an example line. </PRE>
Level 0
The Line Break element specifies that a new line must be started at the given point. A new line indents the same as that of line-wrapped text.
Example of use:
<P> Pease porridge hot<BR> Pease porridge cold<BR> Pease porridge in the pot<BR> Nine days old.
Level 0
A Horizontal Rule element is a divider between sections of text such as a full width horizontal rule or equivalent graphic.
Example of use:
<HR> <ADDRESS>, CERN</ADDRESS> </BODY>
Forms are created by placing input fields within paragraphs, preformatted/literal text, and lists. This gives considerable flexibility in designing the layout of forms.
The following elements (all are HTML 2 features) are used to create forms:
Example of use (a questionnaire form):
<H1>Sample Questionnaire</H1> <P>Please fill out this questionnaire: <FORM METHOD="POST" ACTION="http://www.hal.com/sample"> <P>Your name: <INPUT NAME="name" size="48"> <P>Male <INPUT NAME="gender" TYPE=RADIO VALUE="male"> <P>Female <INPUT NAME="gender" TYPE=RADIO VALUE="female"> <P>Number in family: <INPUT NAME="family" TYPE=text> <P>Cities in which you maintain a residence: <UL> <LI>Kent <INPUT NAME="city" TYPE=checkbox VALUE="kent"> <LI>Miami <INPUT NAME="city" TYPE=checkbox VALUE="miami"> <LI>Other <TEXTAREA NAME="other" cols=48 rows=4></textarea> </UL> Nickname: <INPUT NAME="nickname" SIZE="42"> <P>Thank you for responding to this questionnaire. <P><INPUT TYPE=SUBMIT> <INPUT TYPE=RESET> </FORM>In the example above, the <P> and <UL> tags have been used to lay out the text and input fields. The HTML user agent is responsible for handling which field will currently get keyboard input.
Many platforms have existing conventions for forms, for example, using Tab and Shift keys to move the keyboard focus forwards and backwards between fields, and using the Enter key to submit the form. In the example, the SUBMIT and RESET buttons are specified explicitly with special purpose fields. The SUBMIT button is used to e-mail the form or send its contents to the server as specified by the ACTION attribute, while RESET resets the fields to their initial values. When the form consists of a single text field, it may be appropriate to leave such buttons out and rely on the Enter key.
The Input element is used for a large variety of types of input fields.
To let users enter more than one line of text, use the Textarea element.
Level 2
The Form element is used to delimit a data input form. There can be several forms in a single document, but the Form element can't be nested.
The ACTION attribute is a URL specifying the location to which the contents of the form is submitted to elicit a response. If the ACTION attribute is missing, the URL of the document itself is assumed. The way data is submitted varies with the access protocol of the URL, and with the values of the METHOD and ENCTYPE attributes.
In general:
When the ACTION attribute is set to an HTTP URL, the METHOD attribute must be set to an HTTP method as defined by the HTTP method specification in the IETF draft HTTP standard. The default METHOD is GET, although for many applications, the POST method may be preferred. With the post method, the ENCTYPE attribute is a MIME type specifying the format of the posted data; by default, is application/x-www-form-urlencoded.
Under any protocol, the submitted contents of the form logically consist of name/value pairs. The names are usually equal to the NAME attributes of the various interactive elements in the form.
Level 2
The Input element represents a field whose contents may be edited by the user.
Attributes of the Input element:
INPUT TYPE=text SIZE="24"
Level 2
The Option element can only occur within a Select element. It represents one choice, and can take these attributes:
Level 2
The Select element allows the user to chose one of a set of alternatives described by textual labels. Every alternative is represented by the Option element.
Attributes are:
<SELECT NAME="flavor"> <OPTION>Vanilla <OPTION>Strawberry <OPTION>Rum and Raisin <OPTION>Peach and Orange </SELECT>If no option is initially marked as selected, then the first item listed is selected.
Level 2
The Textarea element lets users enter more than one line of text. For example:
<TEXTAREA NAME="address" ROWS=64 COLS=6> HaL Computer Systems 1315 Dell Avenue Campbell, California 95008 </TEXTAREA>The text up to the end tag (</TEXTAREA>) is used to initialize the field's value. This end tag is always required even if the field is initially blank. When submitting a form, the line terminators are implementation dependent.
In a typical rendering, the ROWS and COLS attributes determine the visible dimension of the field in characters. The field is rendered in a fixed-width font. HTML user agents should allow text to extend beyond these limits by scrolling as needed.
Level 0
The characters between HTML tags represent text encoded according to ISO 8859/1 8-bit single-byte coded graphic character set known as Latin Alphabet No. 1, or simply Latin-1. There are 256 character positions in the Latin-1 encoding. Latin-1 includes characters from most Western European languages. It consists of the space character, 186 characters that form a subset of the graphic characters in ISO 6937/2 (1983), and four additional characters that are intended for inclusion in ISO 6937/2. Also see Section 2.4.
The lower 128 character positions include a space, 33 control characters, the 26 upper- and lowercase letters of the english alphabet, 10 numerals and 32 other printing characters This subset, functionally identical to ASCII, is defined by ISO 646 7-bit coded character set for information interchange, also known as the International Reference Version. ISO 646 is identical in most respect to the ANSI standard for ASCII (American Standard Code for Information Interchange). The only significant difference between ISO 646 and ASCII is the specific names assigned to the control characters in positions 00-31 and 127.
The upper 128 positions include a non-breaking space, a soft hyphen indicator, 93 graphical characters, 8 unassigned characters, and 25 control characters. Because non-breaking space and soft hyphen indicator are not recognized and interpreted by all HTML user agents, their use is discouraged.
There are 58 character positions occupied by control characters. See Section 2.16.2 for details on the interpretation of control characters.
Because certain special characters are subject to interpretation and special processing, information providers and HTML user agent implementors should follow the guidelines in Section 2.16.1.
Certain characters may not be accessible from your keyboard, or some part of your system (i.e. translation software) may not be equipped to deal with 8-bit character codes. HTML and many HTML user agents provide character entity references (see Section 2.17.2) and numerical character references (see Section 2.17.3) to facilitate the entry and interpretation of characters by name and by numerical position.
Because certain characters will be interpreted as markup, they must be represented by markup as described in Section 2.16.3 and Section 2.16.4.
In SGML applications, the use of control characters is limited in order to maximize the chance of successful interchange over heterogenous networks and operating systems. In HTML, only three control characters are used. The valid control characters and their interpretation are:
Two reasons for using a numeric character reference:
the ampersand (&), double quotes ("), lesser (<) and greater (>) characters
Two reasons for using a character entity:
the ampersand (&), double quotes ("), lesser (<) and greater (>) characters Kurt Gödel was a famous logician and mathematician.
The following entity names are used in HTML, always prefixed by ampersand (&) and followed by a semicolon as shown.
They represent particular graphic characters which have special meanings in places in the markup, or may not be part of the character set available to the writer.
GLYPH NAME SYNTAX DESCRIPTION < lt < Less than sign > gt > Greater than sign & amp & Ampersand " quot " Double quote sign
NAME SYNTAX DESCRIPTION Aacute Á Capital A, acute accent Agrave À Capital A, grave accent Acirc  Capital A, circumflex accent Atilde à Capital A, tilde Aring Å Capital A, ring Auml Ä Capital A, dieresis or umlaut mark AElig Æ Capital AE dipthong (ligature) Ccedil Ç Capital C, cedilla Eacute É Capital E, acute accent Egrave È Capital E, grave accent Ecirc Ê Capital E, circumflex accent Euml Ë Capital E, dieresis or umlaut mark Iacute Í Capital I, acute accent Igrave Ì Capital I, grave accent Icirc Î Capital I, circumflex accent Iuml Ï Capital I, dieresis or umlaut mark ETH Ð Capital Eth, Icelandic Ntilde Ñ Capital N, tilde Oacute Ó Capital O, acute accent Ograve Ò Capital O, grave accent Ocirc Ô Capital O, circumflex accent Otilde Õ Capital O, tilde Ouml Ö Capital O, dieresis or umlaut mark Oslash Ø Capital O, slash Uacute Ú Capital U, acute accent Ugrave Ù Capital U, grave accent Ucirc Û Capital U, circumflex accent Uuml Ü Capital U, dieresis or umlaut mark Yacute Ý Capital Y, acute accent THORN Þ Capital THORN, Icelandic szlig ß Small sharp s, German (sz ligature) aacute á Small a, acute accent agrave à Small a, grave accent acirc â Small a, circumflex accent atilde ã Small a, tilde auml ä Small a, dieresis or umlaut mark aelig æ Small ae dipthong (ligature) ccedil ç Small c, cedilla eacute é Small e, acute accent egrave è Small e, grave accent ecirc ê Small e, circumflex accent euml ë Small e, dieresis or umlaut mark iacute í Small i, acute accent igrave ì Small i, grave accent icirc î Small i, circumflex accent iuml ï Small i, dieresis or umlaut mark eth ð Small eth, Icelandic ntilde ñ Small n, tilde oacute ó Small o, acute accent ograve ò Small o, grave accent ocirc ô Small o, circumflex accent otilde õ Small o, tilde ouml ö Small o, dieresis or umlaut mark oslash ø Small o, slash uacute ú Small u, acute accent ugrave ù Small u, grave accent ucirc û Small u, circumflex accent uuml ü Small u, dieresis or umlaut mark yacute ý Small y, acute accent thorn þ Small thorn, Icelandic yuml ÿ Small y, dieresis or umlaut mark
REFERENCE DESCRIPTION � -  Unused 	 Horizontal tab Line feed  -  Unused   Space ! Exclamation mark " Quotation mark # Number sign $ Dollar sign % Percent sign & Ampersand ' Apostrophe ( Left parenthesis ) Right parenthesis * Asterisk + Plus sign , Comma - Hyphen . Period (fullstop) / Solidus (slash) 0 - 9 Digits 0-9 : Colon ; Semi-colon < Less than = Equals aign > Greater than ? Question mark @ Commercial at A - Z Letters A-Z [ Left square bracket \ Reverse solidus (backslash) ] Right square bracket _ Horizontal bar ` Acute accent a - z Letters a-z { Left curly brace | Vertical bar } Right curly brace ~ Tilde  -   Unused ¡ Inverted exclamation ¢ Cent sign £ Pound sterling ¤ General currency sign ¥ Yen sign ¦ Broken vertical bar § Section sign ¨ Umlaut (dieresis) © Copyright ª Feminine ordinal « Left angle quote, guillemotleft ¬ Not sign ­ Soft hyphen ® Registered trademark ¯ Macron accent ° Degree sign ± Plus or minus ² Superscript two ³ Superscript three ´ Acute accent µ Micro sign ¶ Paragraph sign · Middle dot ¸ Cedilla ¹ Superscript one º Masculine ordinal » Right angle quote, guillemotright ¼ Fraction one-fourth ½ Fraction one-half ¾ Fraction three-fourths ¿ Inverted question mark À Capital A, acute accent Á Capital A, grave accent  Capital A, circumflex accent à Capital A, tilde Ä Capital A, ring Å Capital A, dieresis or umlaut mark Æ Capital AE dipthong (ligature) Ç Capital C, cedilla È Capital E, acute accent É Capital E, grave accent Ê Capital E, circumflex accent Ë Capital E, dieresis or umlaut mark Ì Capital I, acute accent Í Capital I, grave accent Î Capital I, circumflex accent Ï Capital I, dieresis or umlaut mark Ð Capital Eth, Icelandic Ñ Capital N, tilde Ò Capital O, acute accent Ó Capital O, grave accent Ô Capital O, circumflex accent Õ Capital O, tilde Ö Capital O, dieresis or umlaut mark × Multiply sign Ø Capital O, slash Ù Capital U, acute accent Ú Capital U, grave accent Û Capital U, circumflex accent Ü Capital U, dieresis or umlaut mark Ý Capital Y, acute accent Þ Capital THORN, Icelandic ß Small sharp s, German (sz ligature) à Small a, acute accent á Small a, grave accent â Small a, circumflex accent ã Small a, tilde ä Small a, tilde å Small a, dieresis or umlaut mark æ Small ae dipthong (ligature) ç Small c, cedilla è Small e, acute accent é Small e, grave accent ê Small e, circumflex accent ë Small e, dieresis or umlaut mark ì Small i, acute accent í Small i, grave accent î Small i, circumflex accent ï Small i, dieresis or umlaut mark ð Small eth, Icelandic ñ Small n, tilde ò Small o, acute accent ó Small o, grave accent ô Small o, circumflex accent õ Small o, tilde ö Small o, dieresis or umlaut mark ÷ Division sign ø Small o, slash ù Small u, acute accent ú Small u, grave accent û Small u, circumflex accent ü Small u, dieresis or umlaut mark ý Small y, acute accent þ Small thorn, Icelandic ÿ Small y, dieresis or umlaut mark
Documents may be constructed whose visible contents mislead the reader to follow a link to unsuitable or offensive material.
This section describes elements that are no longer part of HTML. Client implementors should implement these obsolete elements for compatibility with previous versions of the HTML specification.
Example of use:
<HP1>first highlighted phrase</HP1>non highlighted text<HP2>second highlighted phrase</HP2> etc.
The Plain Text element is used to terminates the HTML entity and to indicate that what follows is not SGML which does not require parsing. Instead, an old HTTP convention specified that what followed was an ASCII (MIME "text/plain") body. Its presence is an optimization. There is no closing tag.
Example of use:
<PLAINTEXT> 0001 This is line one of a long listing 0002 file from <ANY@HOST.INC.COM> which is sent
The Example element and Listing element have been replaced by the Preformatted Text element.
These styles allow text of fixed-width characters to be embedded absolutely as is into the document. The syntax is:
<LISTING> ... </LISTING>or
<XMP> ... </XMP>The text between these tags is typically rendered in a monospaced font so that any formatting done by character spacing on successive lines will be maintained.
Between the opening and closing tags:
This section describes proposed HTML elements and entities that are not currently supported under HTML Levels 0, 1, or 2, but may be supported in the future.
The Defining Instance element indicates the defining instance of a term. The typical rendering is bold or bold italic. This element is not widely supported.
CHARACTER REPRESENTATION Non-breaking space Soft-hyphen ­ Registered ® Copyright ©
The Strike element is proposed to indicate strikethrough, a font style in which a horizontal line appears through characters. This element is not widely supported.
The Underline element is proposed to indicate that the text should be rendered as underlined. This proposed tag is not supported by all HTML user agents.
Example of use:
The text <U>shown here</U> is rendered in the document as underlined.
This is the SGML Declaration for HyperText Markup Language (HTML) as used by the World Wide Web (WWW) application:
<!SGML "ISO 8879:1986" -- SGML Declaration for HyperText Markup Language (HTML). -- CHARSET BASESET "ISO 646:1983//CHARSET International Reference Version (IRV)//ESC 2/5 4/0" DESCSET 0 9 UNUSED 9 2 9 11 2 UNUSED 13 1 13 14 18 UNUSED 32 95 32 127 1 UNUSED BASESET "ISO Registration Number 100//CHARSET ECMA-94 Right Part of Latin Alphabet Nr. 1//ESC 2/13 4/1" DESCSET 128 32 UNUSED 160 96 32 CAPACITY SGMLREF TOTALCAP 150000 GRPCAP 150000 SCOPE DOCUMENT SYNTAX SHUNCHAR CONTROLS 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 127 BASESET "ISO 646:1983//CHARSET International Reference Version (IRV)//ESC 2/5 4/0" DESCSET 0 128 0 FUNCTION -- SPACE 32 TAB SEPCHAR 9 LF SEPCHAR 10 FF SEPCHAR 12 CR SEPCHAR 13 -- -- The above is an accurate description of the usage of FUNCTION -- -- characters in HTML implementations; that is, there is no -- -- Record Start or Record End character, and no occurences of -- -- character 10 or 13 are "ignored" by the parser. -- -- But because few SGML implementations support this concrete -- -- sytax, we include the one below. -- -- Note that in order to get correct behaviour w.r.t. newline -- -- processing, you will have to play some tricks in construcing -- -- the document entity for parsing in order to keep the parser -- -- from ignoring newlines in surprising ways -- RE 13 RS 10 SPACE 32 TAB SEPCHAR 9 NAMING LCNMSTRT "" UCNMSTRT "" LCNMCHAR ".-" UCNMCHAR ".-" NAMECASE GENERAL YES ENTITY NO DELIM GENERAL SGMLREF SHORTREF SGMLREF NAMES SGMLREF QUANTITY SGMLREF NAMELEN 72 -- somewhat arbitrary; taken from internet line length conventions -- TAGLVL 100 LITLEN 1024 GRPGTCNT 150 GRPCNT 64 FEATURES MINIMIZE DATATAG NO OMITTAG YES RANK NO SHORTTAG YES LINK SIMPLE NO IMPLICIT NO EXPLICIT NO OTHER CONCUR NO SUBDOC NO FORMAL YES APPINFO NONE > <!-- $Id: html.decl,v 1.9 1994/11/15 19:54:44 connolly Exp $ Author: Daniel W. Connolly <connolly@hal.com> See also: http://www.hal.com/%7Econnolly/html-spec http://info.cern.ch/hypertext/WWW/MarkUp/MarkUp.html -->
To assist the interoperability among various SGML tools and systems, the SGML Open consortium has passed a technical resolution that defines a format for an application-independent entity catalog that maps external identifiers and/or entity names to file names.
Each entry in the catalog associates a storage object identifier (such as a file name) with information about the external entity that appears in the SGML document. In addition to entries that associate public identifiers, a catalog entry can associate an entity name with a storage object indentifier. For example, the following are possible catalog entries:
PUBLIC "ISO 8879:1986//ENTITIES Added Latin 1//EN" "iso-lat1.gml" PUBLIC "-//ACME DTD Writers//DTD General Report//EN" report.dtd ENTITY "graph1" "graphics\graph1.cgm"In particular, the following shows entries relevant to HTML.
-- catalog: SGML Open style entity catalog for HTML -- -- $Id: catalog,v 1.1 1994/10/07 21:35:07 connolly Exp $ -- -- Ways to refer to Level 2: most general to most specific -- PUBLIC "-//IETF//DTD HTML//EN" html.dtd PUBLIC "-//IETF//DTD HTML//EN//2.0" html.dtd PUBLIC "-//IETF//DTD HTML Level 2//EN" html.dtd PUBLIC "-//IETF//DTD HTML Level 2//EN//2.0" html.dtd -- Ways to refer to Level 1: most general to most specific -- PUBLIC "-//IETF//DTD HTML Level 1//EN" html-1.dtd PUBLIC "-//IETF//DTD HTML Level 1//EN//2.0" html-1.dtd -- Ways to refer to Level 0: most general to most specific -- PUBLIC "-//IETF//DTD HTML Level 0//EN" html-0.dtd PUBLIC "-//IETF//DTD HTML Level 0//EN//2.0" html-0.dtd -- ISO latin 1 entity set for HTML -- PUBLIC "-//IETF//ENTITIES Added Latin 1//EN" ISOlat1.sgml
This is the Document Type Definition for the HyperText Markup Language (HTML DTD):
<!-- html.dtd Document Type Definition for the HyperText Markup Language (HTML DTD) $Id: html.dtd,v 1.21 1994/11/15 19:54:38 connolly Exp $ Author: Daniel W. Connolly <connolly@hal.com> See Also: html.decl, html-0.dtd, html-1.dtd http://www.hal.com/%7Econnolly/html-spec/index.html http://info.cern.ch/hypertext/WWW/MarkUp2/MarkUp.html --> <!ENTITY % HTML.Version "-//IETF//DTD HTML//EN//2.0" -- Typical usage: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html> ... </html> -- > <!--================== Feature Test Entities ==============================--> <!ENTITY % HTML.Recommended "IGNORE" -- Certain features of the language are necessary for compatibility with widespread usage, but they may compromise the structural integrity of a document. This feature test entity enables a more prescriptive document type definition that eliminates those features. --> <![ %HTML.Recommended [ <!ENTITY % HTML.Deprecated "IGNORE"> ]]> <!ENTITY % HTML.Deprecated "INCLUDE" -- Certain features of the language are necessary for compatibility with earlier versions of the specification, but they tend to be used an implemented inconsistently, and their use is deprecated. This feature test entity enables a document type definition that eliminates these features. --> <!ENTITY % HTML.Highlighting "INCLUDE" -- Use this feature test entity to validate that a document uses no highlighting tags, which may be ignored on minimal implementations. --> <!ENTITY % HTML.Forms "INCLUDE" -- Use this feature test entity to validate that a document contains no forms, which may not be supported in minimal implementations --> <!--================== Imported Names =====================================--> <!ENTITY % Content-Type "CDATA" -- meaning an internet media type (aka MIME content type, as per RFC1521) --> <!ENTITY % HTTP-Method "GET | POST" -- as per HTTP specification, in progress --> <!ENTITY % URI "CDATA" -- The term URI means a CDATA attribute whose value is a Uniform Resource Identifier, as defined by "Universal Resource Identifiers" by Tim Berners-Lee aka http://info.cern.ch/hypertext/WWW/Addressing/URL/URI_Overview.html aka RFC 1630 Note that CDATA attributes are limited by the LITLEN capacity (1024 in the current version of html.decl), so that URIs in HTML have a bounded length. --> <!--================== DTD "Macros" =======================================--> <!ENTITY % heading "H1|H2|H3|H4|H5|H6"> <!ENTITY % list " UL | OL | DIR | MENU " > <!--================ Character mnemonic entities ==========================--> <!ENTITY % ISOlat1 PUBLIC "-//IETF//ENTITIES Added Latin 1 for HTML//EN"> %ISOlat1; <!ENTITY amp CDATA "&" -- ampersand --> <!ENTITY gt CDATA ">" -- greater than --> <!ENTITY lt CDATA "<" -- less than --> <!ENTITY quot CDATA """ -- double quote --> <!--=================== Text Markup =======================================--> <![ %HTML.Highlighting [ <!ENTITY % font " TT | B | I "> <!ENTITY % phrase "EM | STRONG | CODE | SAMP | KBD | VAR | CITE "> <!ENTITY % text "#PCDATA | A | IMG | BR | %phrase | %font"> <!ELEMENT (%font;|%phrase) - - (%text)+> <!-- <TT> Typewriter text --> <!-- <B> Bold text --> <!-- <I> Italic text --> <!-- <EM> Emphasized phrase --> <!-- <STRONG> Strong emphais --> <!-- <CODE> Source code phrase --> <!-- <SAMP> Sample text or characters --> <!-- <KBD> Keyboard phrase, e.g. user input --> <!-- <VAR> Variable phrase or substituable --> <!-- <CITE> Name or title of cited work --> <!ENTITY % pre.content "#PCDATA | A | HR | BR | %font | %phrase"> ]]> <!ENTITY % text "#PCDATA | A | IMG | BR"> <!ELEMENT BR - O EMPTY> <!-- <BR> Line break --> <!--================== Link Markup ========================================--> <![ %HTML.Recommended [ <!ENTITY % linkName "ID"> ]]> <!ENTITY % linkName "CDATA"> <!ENTITY % linkType "NAME" -- a list of these will be specified at a later date --> <!ENTITY % linkExtraAttributes "REL %linkType #IMPLIED REV %linkType #IMPLIED URN CDATA #IMPLIED TITLE CDATA #IMPLIED METHODS NAMES #IMPLIED "> <![ %HTML.Recommended [ <!ENTITY % A.content "(%text)+" -- <H1><a name="xxx">Heading</a></H1> is preferred to <a name="xxx"><H1>Heading</H1></a> --> ]]> <!ENTITY % A.content "(%heading|%text)+"> <!ELEMENT A - - %A.content -(A)> <!ATTLIST A HREF %URI #IMPLIED NAME %linkName #IMPLIED %linkExtraAttributes; > <!-- <A> Anchor; source and/or destination of a link --> <!-- <A NAME="..."> Name of this anchor --> <!-- <A HREF="..."> Address of link destination --> <!-- <A URN="..."> Permanent address of destination --> <!-- <A REL=...> Relationship of this anchor to destination --> <!-- <A REV=...> Relationship of destination to this anchor --> <!-- <A TITLE="..."> Title of destination (advisory) --> <!-- <A METHODS="..."> Operations allowed on destination (advisory) --> <!--=================== Images ============================================--> <!ELEMENT IMG - O EMPTY> <!ATTLIST IMG SRC %URI; #REQUIRED ALT CDATA #IMPLIED ALIGN (top|middle|bottom) #IMPLIED ISMAP (ISMAP) #IMPLIED > <!-- <IMG> Image; icon, glyph or illustration --> <!-- <IMG SRC="..."> Address of image object --> <!-- <IMG ALT="..."> Textual alternative --> <!-- <IMG ALIGN=...> Position relative to text --> <!-- <IMG ISMAP> Each pixel can be a link --> <!--=================== Paragraphs=========================================--> <!ELEMENT P - O (%text)+> <!-- <P> Paragraph --> <!--=================== Headings, Titles, Sections ========================--> <!ELEMENT HR - O EMPTY> <!-- <HR> Horizontal rule --> <!ELEMENT ( %heading ) - - (%text;)+> <!-- <H1> Heading, level 1 --> <!-- <H2> Heading, level 2 --> <!-- <H3> Heading, level 3 --> <!-- <H4> Heading, level 4 --> <!-- <H5> Heading, level 5 --> <!-- <H6> Heading, level 6 --> <!--=================== Text Flows ========================================--> <![ %HTML.Forms [ <!ENTITY % block.forms "| FORM | ISINDEX"> ]]> <!ENTITY % block.forms ""> <![ %HTML.Deprecated [ <!ENTITY % preformatted "PRE | XMP | LISTING"> ]]> <!ENTITY % preformatted "PRE"> <!ENTITY % block "P | %list | DL | %preformatted | BLOCKQUOTE %block.forms"> <!ENTITY % flow "(%text|%block)*"> <!ENTITY % pre.content "#PCDATA | A | HR | BR"> <!ELEMENT PRE - - (%pre.content)+> <!ATTLIST PRE WIDTH NUMBER #implied > <!-- <PRE> Preformatted text --> <!-- <PRE WIDTH=...> Maximum characters per line --> <![ %HTML.Deprecated [ <!ENTITY % literal "CDATA" -- historical, non-conforming parsing mode where the only markup signal is the end tag in full --> <!ELEMENT (XMP|LISTING) - - %literal> <!-- <XMP> Example section --> <!-- <LISTING> Computer listing --> <!ELEMENT PLAINTEXT - O %literal> <!-- <PLAINTEXT> Plain text passage --> ]]> <!--=================== Lists =============================================--> <!ELEMENT DL - - (DT | DD)+> <!ATTLIST DL COMPACT (COMPACT) #IMPLIED> <!ELEMENT DT - O (%text)+> <!ELEMENT DD - O %flow> <!-- <DL> Definition list, or glossary --> <!-- <DL COMPACT> Compact style list --> <!-- <DT> Term in definition list --> <!-- <DD> Definition of term --> <!ELEMENT (OL|UL) - - (LI)+> <!ELEMENT (DIR|MENU) - - (LI)+ -(%block)> <!ATTLIST (%list) COMPACT (COMPACT) #IMPLIED> <!-- <UL> Unordered list --> <!-- <UL COMPACT> Compact list style --> <!-- <OL> Ordered, or numbered list --> <!-- <OL COMPACT> Compact list style --> <!-- <DIR> Directory list --> <!-- <DIR COMPACT> Compact list style --> <!-- <MENU> Menu list --> <!-- <MENU COMPACT> Compact list style --> <!ELEMENT LI - O %flow> <!-- <LI> List item --> <!--=================== Document Body =====================================--> <![ %HTML.Recommended [ <!ENTITY % body.content "(%heading|%block|HR|ADDRESS)*" -- <h1>Heading</h1> <p>Text ... is preferred to <h1>Heading</h1> Text ... --> ]]> <!ENTITY % body.content "(%heading | %text | %block | HR | ADDRESS)*"> <!ELEMENT BODY O O %body.content> <!-- <BODY> Document body --> <!ELEMENT BLOCKQUOTE - - %body.content> <!-- <BLOCKQUOTE> Quoted passage --> <!ELEMENT ADDRESS - - (%text|P)*> <!-- <ADDRESS> Address, signature, or byline for document or passage --> <!--================ Forms ===============================================--> <![ %HTML.Forms [ <!ELEMENT FORM - - %body.content -(FORM) +(INPUT|SELECT|TEXTAREA)> <!ATTLIST FORM ACTION %URI #IMPLIED METHOD (%HTTP-Method) GET ENCTYPE %Content-Type; "application/x-www-form-urlencoded" > <!-- <FORM> Fill-out or data-entry form --> <!-- <FORM ACTION="..."> Address for completed form --> <!-- <FORM METHOD=...> Method of submitting form --> <!-- <FORM ENCTYPE="..."> Representation of form data --> <!ENTITY % InputType "(TEXT | PASSWORD | CHECKBOX | RADIO | SUBMIT | RESET | IMAGE | HIDDEN )"> <!ELEMENT INPUT - O EMPTY> <!ATTLIST INPUT TYPE %InputType TEXT NAME CDATA #IMPLIED VALUE CDATA #IMPLIED SRC %URI #IMPLIED CHECKED (CHECKED) #IMPLIED SIZE CDATA #IMPLIED MAXLENGTH NUMBER #IMPLIED ALIGN (top|middle|bottom) #IMPLIED > <!-- <INPUT> Form input datum --> <!-- <INPUT TYPE=...> Type of input interaction --> <!-- <INPUT TYPE=...> Name of form datum --> <!-- <INPUT VALUE="..."> Default/initial/selected value --> <!-- <INPUT SRC="..."> Address of image --> <!-- <INPUT CHECKED> Initial state is "on" --> <!-- <INPUT SIZE=...> Field size hint --> <!-- <INPUT MAXLENGTH=...> Data length maximum --> <!-- <INPUT ALIGN=...> Image alignment --> <!ELEMENT SELECT - - (OPTION+)> <!ATTLIST SELECT NAME CDATA #REQUIRED SIZE NUMBER #IMPLIED MULTIPLE (MULTIPLE) #IMPLIED > <!-- <SELECT> Selection of option(s) --> <!-- <SELECT NAME=...> Name of form datum --> <!-- <SELECT SIZE=...> Number of options displayed at a time --> <!-- <SELECT MULTIPLE> Multiple selections allowed --> <!ELEMENT OPTION - O (#PCDATA)> <!ATTLIST OPTION SELECTED (SELECTED) #IMPLIED VALUE CDATA #IMPLIED > <!-- <OPTION> A selection option --> <!-- <OPTION SELECTED> Initial state --> <!-- <OPTION VALUE=""> Form datum value for this option --> <!ELEMENT TEXTAREA - - (#PCDATA)> <!ATTLIST TEXTAREA NAME CDATA #REQUIRED ROWS NUMBER #REQUIRED COLS NUMBER #REQUIRED > <!-- <TEXTAREA> An area for text input --> <!-- <TEXTAREA NAME=...> Name of form datum --> <!-- <TEXTAREA ROWS=...> Height of area --> <!-- <TEXTAREA COLS=...> Width of area --> ]]> <!--================ Document Head ========================================--> <!ENTITY % head.link "& LINK*"> <![ %HTML.Recommended [ <!ENTITY % head.nextid ""> ]]> <!ENTITY % head.nextid "& NEXTID?"> <!ENTITY % head.content "TITLE & ISINDEX? & BASE? & META* %head.nextid %head.link"> <!ELEMENT HEAD O O (%head.content)> <!-- <HEAD> Document head --> <!ELEMENT TITLE - - (#PCDATA)> <!-- <TITLE> Title of document --> <!ELEMENT LINK - O EMPTY> <!ATTLIST LINK HREF %URI #REQUIRED %linkExtraAttributes; > <!-- <LINK> Link from this document --> <!-- <LINK HREF="..."> Address of link destination --> <!-- <LINK URN="..."> Lasting name of destination --> <!-- <LINK REL=...> Relationship of this document to destination --> <!-- <LINK REV=...> Relationship of destination to this document --> <!-- <LINK TITLE="..."> Title of destination (advisory) --> <!-- <LINK METHODS="..."> Operations allowed on destination (advisory) --> <!ELEMENT ISINDEX - O EMPTY> <!-- <ISINDEX> Document is a searchable index --> <!ELEMENT BASE - O EMPTY> <!ATTLIST BASE HREF %URI; #REQUIRED > <!-- <BASE> Base context document --> <!-- <BASE HREF="..."> Address for this document --> <!ELEMENT NEXTID - O EMPTY> <!ATTLIST NEXTID N %linkName #REQUIRED> <!-- <NEXTID> Next ID to use for link name --> <!-- <NEXTID N=...> Next ID to use for link name --> <!ELEMENT META - O EMPTY> <!ATTLIST META HTTP-EQUIV NAME #IMPLIED NAME NAME #IMPLIED CONTENT CDATA #REQUIRED > <!-- <META> Generic Metainformation --> <!-- <META HTTP-EQUIV=...> HTTP response header name --> <!-- <META HTTP-EQUIV=...> Metainformation name --> <!-- <META CONTENT="..."> Associated information --> <!--================ Document Structure ===================================--> <![ %HTML.Deprecated [ <!ENTITY % html.content "HEAD, BODY, PLAINTEXT?"> ]]> <!ENTITY % html.content "HEAD, BODY"> <!ELEMENT HTML O O (%html.content)> <!ENTITY % version.attr "VERSION CDATA #FIXED "%HTML.Version;""> <!ATTLIST HTML %version.attr; > <!-- <HTML> HyperText Markup Language Document --> <!-- <HTML VERSION="..."> Version of HTML specification -->
<!-- (C) International Organization for Standardization 1986 Permission to copy in any form is granted for use with conforming SGML systems and applications as defined in ISO 8879:1986, provided this notice is included in all copies. --> <!-- Character entity set. Typical invocation: <!ENTITY % ISOlat1 PUBLIC "-//IETF//ENTITIES Added Latin 1 for HTML//EN"> %ISOlat1; --> <!-- Modified for use in HTML $Id: ISOlat1.sgml,v 1.1 1994/09/24 14:06:34 connolly Exp $ --> <!ENTITY AElig CDATA "Æ" -- capital AE diphthong (ligature) --> <!ENTITY Aacute CDATA "Á" -- capital A, acute accent --> <!ENTITY Acirc CDATA "Â" -- capital A, circumflex accent --> <!ENTITY Agrave CDATA "À" -- capital A, grave accent --> <!ENTITY Aring CDATA "Å" -- capital A, ring --> <!ENTITY Atilde CDATA "Ã" -- capital A, tilde --> <!ENTITY Auml CDATA "Ä" -- capital A, dieresis or umlaut mark --> <!ENTITY Ccedil CDATA "Ç" -- capital C, cedilla --> <!ENTITY ETH CDATA "Ð" -- capital Eth, Icelandic --> <!ENTITY Eacute CDATA "É" -- capital E, acute accent --> <!ENTITY Ecirc CDATA "Ê" -- capital E, circumflex accent --> <!ENTITY Egrave CDATA "È" -- capital E, grave accent --> <!ENTITY Euml CDATA "Ë" -- capital E, dieresis or umlaut mark --> <!ENTITY Iacute CDATA "Í" -- capital I, acute accent --> <!ENTITY Icirc CDATA "Î" -- capital I, circumflex accent --> <!ENTITY Igrave CDATA "Ì" -- capital I, grave accent --> <!ENTITY Iuml CDATA "Ï" -- capital I, dieresis or umlaut mark --> <!ENTITY Ntilde CDATA "Ñ" -- capital N, tilde --> <!ENTITY Oacute CDATA "Ó" -- capital O, acute accent --> <!ENTITY Ocirc CDATA "Ô" -- capital O, circumflex accent --> <!ENTITY Ograve CDATA "Ò" -- capital O, grave accent --> <!ENTITY Oslash CDATA "Ø" -- capital O, slash --> <!ENTITY Otilde CDATA "Õ" -- capital O, tilde --> <!ENTITY Ouml CDATA "Ö" -- capital O, dieresis or umlaut mark --> <!ENTITY THORN CDATA "Þ" -- capital THORN, Icelandic --> <!ENTITY Uacute CDATA "Ú" -- capital U, acute accent --> <!ENTITY Ucirc CDATA "Û" -- capital U, circumflex accent --> <!ENTITY Ugrave CDATA "Ù" -- capital U, grave accent --> <!ENTITY Uuml CDATA "Ü" -- capital U, dieresis or umlaut mark --> <!ENTITY Yacute CDATA "Ý" -- capital Y, acute accent --> <!ENTITY aacute CDATA "á" -- small a, acute accent --> <!ENTITY acirc CDATA "â" -- small a, circumflex accent --> <!ENTITY aelig CDATA "æ" -- small ae diphthong (ligature) --> <!ENTITY agrave CDATA "à" -- small a, grave accent --> <!ENTITY aring CDATA "å" -- small a, ring --> <!ENTITY atilde CDATA "ã" -- small a, tilde --> <!ENTITY auml CDATA "ä" -- small a, dieresis or umlaut mark --> <!ENTITY ccedil CDATA "ç" -- small c, cedilla --> <!ENTITY eacute CDATA "é" -- small e, acute accent --> <!ENTITY ecirc CDATA "ê" -- small e, circumflex accent --> <!ENTITY egrave CDATA "è" -- small e, grave accent --> <!ENTITY eth CDATA "ð" -- small eth, Icelandic --> <!ENTITY euml CDATA "ë" -- small e, dieresis or umlaut mark --> <!ENTITY iacute CDATA "í" -- small i, acute accent --> <!ENTITY icirc CDATA "î" -- small i, circumflex accent --> <!ENTITY igrave CDATA "ì" -- small i, grave accent --> <!ENTITY iuml CDATA "ï" -- small i, dieresis or umlaut mark --> <!ENTITY ntilde CDATA "ñ" -- small n, tilde --> <!ENTITY oacute CDATA "ó" -- small o, acute accent --> <!ENTITY ocirc CDATA "ô" -- small o, circumflex accent --> <!ENTITY ograve CDATA "ò" -- small o, grave accent --> <!ENTITY oslash CDATA "ø" -- small o, slash --> <!ENTITY otilde CDATA "õ" -- small o, tilde --> <!ENTITY ouml CDATA "ö" -- small o, dieresis or umlaut mark --> <!ENTITY szlig CDATA "ß" -- small sharp s, German (sz ligature) --> <!ENTITY thorn CDATA "þ" -- small thorn, Icelandic --> <!ENTITY uacute CDATA "ú" -- small u, acute accent --> <!ENTITY ucirc CDATA "û" -- small u, circumflex accent --> <!ENTITY ugrave CDATA "ù" -- small u, grave accent --> <!ENTITY uuml CDATA "ü" -- small u, dieresis or umlaut mark --> <!ENTITY yacute CDATA "ý" -- small y, acute accent --> <!ENTITY yuml CDATA "ÿ" -- small y, dieresis or umlaut mark -->
This is the Document Type Definition for the HyperText Markup Language as used by minimally conforming World Wide Web applications (HTML Level 0 DTD):
<!-- html-0.dtd Document Type Definition for the HyperText Markup Language as used by minimally conforming World Wide Web applications (HTML Level 0 DTD). $Id: html-0.dtd,v 1.9 1994/11/15 19:54:42 connolly Exp $ Author: Daniel W. Connolly <connolly@hal.com> See Also: http://www.hal.com/%7Econnolly/html-spec/index.html http://info.cern.ch/hypertext/WWW/MarkUp2/MarkUp.html --> <!ENTITY % HTML.Version "-//IETF//DTD HTML Level 0//EN//2.0" -- public identifier for "minimal conformance" version -- -- Typical usage: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML Level 0//EN"> <html> ... </html> -- > <!-- Feature Test Entities --> <!ENTITY % HTML.Highlighting "IGNORE"> <!ENTITY % HTML.Forms "IGNORE"> <!ENTITY % head.link " " -- no link in head at level 0 --> <!ENTITY % linkExtraAttributes " "> <!ENTITY % html PUBLIC "-//IETF//DTD HTML//EN//2.0"> %html;
This is the Document Type Definition for the HyperText Markup Language with Level 1 Extensions (HTML Level 1 DTD):
<!-- html-1.dtd Document Type Definition for the HyperText Markup Language with Level 1 Extensions (HTML Level 1 DTD). $Id: html-1.dtd,v 1.5 1994/09/23 22:46:54 connolly Exp $ Author: Daniel W. Connolly <connolly@hal.com> See Also: http://www.hal.com/%7Econnolly/html-spec/index.html http://info.cern.ch/hypertext/WWW/MarkUp2/MarkUp.html --> <!ENTITY % HTML.Version "-//IETF//DTD HTML Level 1//EN//2.0" -- Typical usage: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML Level 1//EN"> <html> ... </html> -- > <!-- Feature Test Entities --> <!ENTITY % HTML.Forms "IGNORE"> <!ENTITY % html PUBLIC "-//IETF//DTD HTML//EN//2.0"> %html;
This listing eliminates deprecated idioms. Consult this reference when generating new documents.
This reference is available as hypertext at http://www.hal.com/%7Econnolly/html-spec/L2Pindex.html
This listing eliminates deprecated idioms. Consult this reference when generating new documents aimed at minimally conforming implementations.
This reference is available as hypertext at http://www.hal.com/%7Econnolly/html-spec/L0Pindex.html
Since 1993, a wide variety of Internet participants have contributed to the evolution of HTML, which has included the addition of in-line images introduced by the NCSA Mosaic software for WWW. Dave Raggett played an important role in deriving the FORMS material from the HTML+ specification.
Dan Connolly and Karen Olson Muldrow rewrote the HTML Specification in 1994.
Special thanks to the many people who have contributed to this specification:
Daniel W. Connolly
Hal Software Systems
3006A Longhorn Blvd.
Austin, TX 78758
phone: (512) 834-9962 extension 5010
fax: (512) 823-9963
URL: http://www.hal.com/~connolly
email: connolly@hal.com