home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc1866.txt < prev    next >
Text File  |  1996-05-07  |  150KB  |  2,111 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                    T. Berners-Lee Request for Comments: 1866                                      MIT/W3C Category: Standards Track                                   D. Connolly                                                           November 1995 
  8.  
  9.                      Hypertext Markup Language - 2.0 
  10.  
  11. Status of this Memo 
  12.  
  13.    This document specifies an Internet standards track protocol for the    Internet community, and requests discussion and suggestions for    improvements.  Please refer to the current edition of the "Internet    Official Protocol Standards" (STD 1) for the standardization state    and status of this protocol.  Distribution of this memo is unlimited. 
  14.  
  15. Abstract 
  16.  
  17.    The Hypertext Markup Language (HTML) is a simple markup language used    to create hypertext documents that are platform independent. HTML    documents are SGML documents with generic semantics that are    appropriate for representing information from a wide range of    domains. 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. 
  18.  
  19.    HTML has been in use by the World Wide Web (WWW) global information    initiative since 1990. This specification roughly corresponds to the    capabilities of HTML in common use prior to June 1994. HTML is an    application of ISO Standard 8879:1986 Information Processing Text and    Office Systems; Standard Generalized Markup Language (SGML). 
  20.  
  21.    The "text/html" Internet Media Type (RFC 1590) and MIME Content Type    (RFC 1521) is defined by this specification. 
  22.  
  23. Table of Contents 
  24.  
  25.     1.     Introduction ........................................... 2     1.1    Scope .................................................. 3     1.2    Conformance ............................................ 3     2.     Terms .................................................. 6     3.     HTML as an Application of SGML .........................10     3.1    SGML Documents .........................................10     3.2    HTML Lexical Syntax ................................... 12     3.3    HTML Public Text Identifiers .......................... 17     3.4    Example HTML Document ................................. 17     4.     HTML as an Internet Media Type ........................ 18 
  26.  
  27.  
  28.  
  29. Berners-Lee & Connolly      Standards Track                     [Page 1] 
  30.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  31.  
  32.      4.1    text/html media type .................................. 18     4.2    HTML Document Representation .......................... 19     5.     Document Structure .................................... 20     5.1    Document Element: HTML ................................ 21     5.2    Head: HEAD ............................................ 21     5.3    Body: BODY ............................................ 24     5.4    Headings: H1 ... H6 ................................... 24     5.5    Block Structuring Elements ............................ 25     5.6    List Elements ......................................... 28     5.7    Phrase Markup ......................................... 30     5.8    Line Break: BR ........................................ 34     5.9    Horizontal Rule: HR ................................... 34     5.10   Image: IMG ............................................ 34     6.     Characters, Words, and Paragraphs ..................... 35     6.1    The HTML Document Character Set ....................... 36     7.     Hyperlinks ............................................ 36     7.1    Accessing Resources ................................... 37     7.2    Activation of Hyperlinks .............................. 38     7.3    Simultaneous Presentation of Image Resources .......... 38     7.4    Fragment Identifiers .................................. 38     7.5    Queries and Indexes ................................... 39     7.6    Image Maps ............................................ 39     8.     Forms ................................................. 40     8.1    Form Elements ......................................... 40     8.2    Form Submission ....................................... 45     9.     HTML Public Text ...................................... 49     9.1    HTML DTD .............................................. 49     9.2    Strict HTML DTD ....................................... 61     9.3    Level 1 HTML DTD ...................................... 62     9.4    Strict Level 1 HTML DTD ............................... 63     9.5    SGML Declaration for HTML ............................. 64     9.6    Sample SGML Open Entity Catalog for HTML .............. 65     9.7    Character Entity Sets ................................. 66     10.    Security Considerations ............................... 69     11.    References ............................................ 69     12.    Acknowledgments ....................................... 71     12.1   Authors' Addresses .................................... 71     13.    The HTML Coded Character Set .......................... 72     14.    Proposed Entities ..................................... 75 
  33.  
  34. 1. Introduction 
  35.  
  36.    The HyperText Markup Language (HTML) is a simple data format 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 domains. 
  37.  
  38.  
  39.  
  40.  Berners-Lee & Connolly      Standards Track                     [Page 2] 
  41.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  42.  
  43.     As HTML is an application of SGML, this specification assumes a    working knowledge of [SGML]. 
  44.  
  45. 1.1. Scope 
  46.  
  47.    HTML has been in use by the World-Wide Web (WWW) global information    initiative since 1990. Previously, informal documentation on HTML has    been available from a number of sources on the Internet. This    specification brings together, clarifies, and formalizes a set of    features that roughly corresponds to the capabilities of HTML in    common use prior to June 1994. A number of new features to HTML are    being proposed and experimented in the Internet community. 
  48.  
  49.    This document thus defines a HTML 2.0 (to distinguish it from the    previous informal specifications). Future (generally upwardly    compatible) versions of HTML with new features will be released with    higher version numbers. 
  50.  
  51.    HTML is an application of ISO Standard 8879:1986, "Information    Processing Text and Office Systems; Standard Generalized Markup    Language" (SGML). The HTML Document Type Definition (DTD) is a formal    definition of the HTML syntax in terms of SGML. 
  52.  
  53.    This specification also defines HTML as an Internet Media    Type[IMEDIA] and MIME Content Type[MIME] called `text/html'. As such,    it defines the semantics of the HTML syntax and how that syntax    should be interpreted by user agents. 
  54.  
  55. 1.2. Conformance 
  56.  
  57.    This specification governs the syntax of HTML documents and aspects    of the behavior of HTML user agents. 
  58.  
  59. 1.2.1. Documents 
  60.  
  61.    A document is a conforming HTML document if: 
  62.  
  63.         * It is a conforming SGML document, and it conforms to the         HTML DTD (see 9.1, "HTML DTD"). 
  64.  
  65.             NOTE - There are a number of syntactic idioms that             are not supported or are supported inconsistently in             some historical user agent implementations. These             idioms are identified in notes like this throughout             this specification. 
  66.  
  67.         * It conforms to the application conventions in this         specification. For example, the value of the HREF attribute 
  68.  
  69.  
  70.  
  71. Berners-Lee & Connolly      Standards Track                     [Page 3] 
  72.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  73.  
  74.          of the <A> element must conform to the URI syntax. 
  75.  
  76.         * Its document character set includes [ISO-8859-1] and         agrees with [ISO-10646]; that is, each code position listed         in 13, "The HTML Coded Character Set" is included, and each         code position in the document character set is mapped to the         same character as [ISO-10646] designates for that code         position. 
  77.  
  78.             NOTE - The document character set is somewhat             independent of the character encoding scheme used to             represent a document. For example, the `ISO-2022-JP'             character encoding scheme can be used for HTML             documents, since its repertoire is a subset of the             [ISO-10646] repertoire. The critical distinction is             that numeric character references agree with             [ISO-10646] regardless of how the document is             encoded. 
  79.  
  80. 1.2.2. Feature Test Entities 
  81.  
  82.    The HTML DTD defines a standard HTML document type and several    variations, by way of feature test entities. Feature test entities    are declarations in the HTML DTD that control the inclusion or    exclusion of portions of the DTD. 
  83.  
  84.     HTML.Recommended             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 selects a more prescriptive document             type definition that eliminates those features. It is             set to `IGNORE' by default. 
  85.  
  86.             For example, in order to preserve the structure of a             document, an editing user agent may translate HTML             documents to the recommended subset, or it may require             that the documents be in the recommended subset for             import. 
  87.  
  88.     HTML.Deprecated             Certain features of the language are necessary for             compatibility with earlier versions of the             specification, but they tend to be used and implemented             inconsistently, and their use is deprecated. This             feature test entity enables a document type definition             that allows these features. It is set to `INCLUDE' by             default. 
  89.  
  90.  
  91.  
  92. Berners-Lee & Connolly      Standards Track                     [Page 4] 
  93.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  94.  
  95.              Documents generated by translation software or editing             software should not contain deprecated idioms. 
  96.  
  97. 1.2.3. User Agents 
  98.  
  99.    An HTML user agent conforms to this specification if: 
  100.  
  101.         * It parses the characters of an HTML document into data         characters and markup according to [SGML]. 
  102.  
  103.             NOTE - In the interest of robustness and             extensibility, there are a number of widely deployed             conventions for handling non-conforming documents.             See 4.2.1, "Undeclared Markup Error Handling" for             details. 
  104.  
  105.         * It supports the `ISO-8859-1' character encoding scheme and         processes each character in the ISO Latin Alphabet No. 1 as         specified in 6.1, "The HTML Document Character Set". 
  106.  
  107.             NOTE - To support non-western writing systems, HTML             user agents are encouraged to support             `ISO-10646-UCS-2' or similar character encoding             schemes and as much of the character repertoire of             [ISO-10646] as is practical. 
  108.  
  109.         * It behaves identically for documents whose parsed token         sequences are identical. 
  110.  
  111.         For example, comments and the whitespace in tags disappear         during tokenization, and hence they do not influence the         behavior of conforming user agents. 
  112.  
  113.         * It allows the user to traverse (or at least attempt to         traverse, resources permitting) all hyperlinks from <A>         elements in an HTML document. 
  114.  
  115.    An HTML user agent is a level 2 user agent if, additionally: 
  116.  
  117.         * It allows the user to express all form field values         specified in an HTML document and to (attempt to) submit the         values as requests to information services. 
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127. Berners-Lee & Connolly      Standards Track                     [Page 5] 
  128.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  129.  
  130.  2. Terms 
  131.  
  132.     absolute URI             a URI in absolute form; for example, as per [URL] 
  133.  
  134.     anchor             one of two ends of a hyperlink; typically, a phrase             marked as an <A> element. 
  135.  
  136.     base URI             an absolute URI used in combination with a relative URI             to determine another absolute URI. 
  137.  
  138.     character             An atom of information, for example a letter or a digit.             Graphic characters have associated glyphs, whereas             control characters have associated processing semantics. 
  139.  
  140.     character encoding     scheme             A function whose domain is the set of sequences of             octets, and whose range is the set of sequences of             characters from a character repertoire; that is, a             sequence of octets and a character encoding scheme             determines a sequence of characters. 
  141.  
  142.     character repertoire             A finite set of characters; e.g. the range of a coded             character set. 
  143.  
  144.     code position             An integer. A coded character set and a code position             from its domain determine a character. 
  145.  
  146.     coded character set             A function whose domain is a subset of the integers and             whose range is a character repertoire. That is, for some             set of integers (usually of the form {0, 1, 2, ..., N}             ), a coded character set and an integer in that set             determine a character. Conversely, a character and a             coded character set determine the character's code             position (or, in rare cases, a few code positions). 
  147.  
  148.     conforming HTML user     agent             A user agent that conforms to this specification in its             processing of the Internet Media Type `text/html'. 
  149.  
  150.  
  151.  
  152.  Berners-Lee & Connolly      Standards Track                     [Page 6] 
  153.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  154.  
  155.      data character             Characters other than markup, which make up the content             of elements. 
  156.  
  157.     document character set             a coded character set whose range includes all             characters used in a document. Every SGML document has             exactly one document character set. Numeric character             references are resolved via the document character set. 
  158.  
  159.     DTD             document type definition. Rules that apply SGML to the             markup of documents of a particular type, including a             set of element and entity declarations. [SGML] 
  160.  
  161.     element             A component of the hierarchical structure defined by a             document type definition; it is identified in a document             instance by descriptive markup, usually a start-tag and             end-tag. [SGML] 
  162.  
  163.     end-tag             Descriptive markup that identifies the end of an             element. [SGML] 
  164.  
  165.     entity             data with an associated notation or interpretation; for             example, a sequence of octets associated with an             Internet Media Type. [SGML] 
  166.  
  167.     fragment identifier             the portion of an HREF attribute value following the `#'             character which modifies the presentation of the             destination of a hyperlink. 
  168.  
  169.     form data set             a sequence of name/value pairs; the names are given by             an HTML document and the values are given by a user. 
  170.  
  171.     HTML document             An SGML document conforming to this document type             definition. 
  172.  
  173.     hyperlink             a relationship between two anchors, called the head and             the tail. The link goes from the tail to the head. The             head and tail are also known as destination and source,             respectively. 
  174.  
  175.  
  176.  
  177. Berners-Lee & Connolly      Standards Track                     [Page 7] 
  178.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  179.  
  180.      markup             Syntactically delimited characters added to the data of             a document to represent its structure. There are four             different kinds of markup: descriptive markup (tags),             references, markup declarations, and processing             instructions. [SGML] 
  181.  
  182.     may             A document or user interface is conforming whether this             statement applies or not. 
  183.  
  184.     media type             an Internet Media Type, as per [IMEDIA]. 
  185.  
  186.     message entity             a head and body. The head is a collection of name/value             fields, and the body is a sequence of octets. The head             defines the content type and content transfer encoding             of the body. [MIME] 
  187.  
  188.     minimally conforming     HTML user agent             A user agent that conforms to this specification except             for form processing. It may only process level 1 HTML             documents. 
  189.  
  190.     must             Documents or user agents in conflict with this statement             are not conforming. 
  191.  
  192.     numeric character     reference             markup that refers to a character by its code position             in the document character set. 
  193.  
  194.     SGML document             A sequence of characters organized physically as a set             of entities and logically into a hierarchy of elements.             An SGML document consists of data characters and markup;             the markup describes the structure of the information             and an instance of that structure. [SGML] 
  195.  
  196.     shall             If a document or user agent conflicts with this             statement, it does not conform to this specification. 
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  Berners-Lee & Connolly      Standards Track                     [Page 8] 
  203.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  204.  
  205.      should             If a document or user agent conflicts with this             statement, undesirable results may occur in practice             even though it conforms to this specification. 
  206.  
  207.     start-tag             Descriptive markup that identifies the start of an             element and specifies its generic identifier and             attributes. [SGML] 
  208.  
  209.     syntax-reference     character set             A coded character set whose range includes all             characters used for markup; e.g. name characters and             delimiter characters. 
  210.  
  211.     tag             Markup that delimits an element. A tag includes a name             which refers to an element declaration in the DTD, and             may include attributes. [SGML] 
  212.  
  213.     text entity             A finite sequence of characters. A text entity typically             takes the form of a sequence of octets with some             associated character encoding scheme, transmitted over             the network or stored in a file. [SGML] 
  214.  
  215.     typical             Typical processing is described for many elements. This             is not a mandatory part of the specification but is             given as guidance for designers and to help explain the             uses for which the elements were intended. 
  216.  
  217.     URI             A Uniform Resource Identifier is a formatted string that             serves as an identifier for a resource, typically on the             Internet. URIs are used in HTML to identify the anchors             of hyperlinks. URIs in common practice include Uniform             Resource Locators (URLs)[URL] and Relative URLs             [RELURL]. 
  218.  
  219.     user agent             A component of a distributed system that presents an             interface and processes requests on behalf of a user;             for example, a www browser or a mail user agent. 
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  Berners-Lee & Connolly      Standards Track                     [Page 9] 
  226.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  227.  
  228.      WWW             The World-Wide Web is a hypertext-based, distributed             information system created by researchers at CERN in             Switzerland. <URL:http://www.w3.org/> 
  229.  
  230. 3. HTML as an Application of SGML 
  231.  
  232.    HTML is an application of ISO 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[SGML]. The public text -- DTD and SGML declaration --    of the HTML document type definition are provided in 9, "HTML Public    Text". 
  233.  
  234.    The term "HTML" refers to both the document type defined here and the    markup language for representing instances of this document type. 
  235.  
  236. 3.1. SGML Documents 
  237.  
  238.    An HTML document is an SGML document; that is, a sequence of    characters organized physically into a set of entities, and logically    as a hierarchy of elements. 
  239.  
  240.    In the SGML specification, the first production of the SGML syntax    grammar separates an SGML document into three parts: an SGML    declaration, a prologue, and an instance. For the purposes of this    specification, the prologue is a DTD. This DTD describes another    grammar: the start symbol is given in the doctype declaration, the    terminals are data characters and tags, and the productions are    determined by the element declarations. The instance must conform to    the DTD, that is, it must be in the language defined by this grammar. 
  241.  
  242.    The SGML declaration determines the lexicon of the grammar. It    specifies the document character set, which determines a character    repertoire that contains all characters that occur in all text    entities in the document, and the code positions associated with    those characters. 
  243.  
  244.    The SGML declaration also specifies the syntax-reference character    set of the document, and a few other parameters that bind the    abstract syntax of SGML to a concrete syntax. This concrete syntax    determines how the sequence of characters of the document is mapped    to a sequence of terminals in the grammar of the prologue. 
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  Berners-Lee & Connolly      Standards Track                    [Page 10] 
  253.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  254.  
  255.     For example, consider the following document: 
  256.  
  257.     <!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">     <title>Parsing Example</title>     <p>Some text. <em>*wow*</em></p> 
  258.  
  259.    An HTML user agent should use the SGML declaration that is given in    9.5, "SGML Declaration for HTML". According to its document character    set, `*' refers to an asterisk character, `*'. 
  260.  
  261.    The instance above is regarded as the following sequence of    terminals: 
  262.  
  263.         1. start-tag: TITLE 
  264.  
  265.         2. data characters: "Parsing Example" 
  266.  
  267.         3. end-tag: TITLE 
  268.  
  269.         4. start-tag: P 
  270.  
  271.         5. data characters "Some text." 
  272.  
  273.         6. start-tag: EM 
  274.  
  275.         7. data characters: "*wow*" 
  276.  
  277.         8. end-tag: EM 
  278.  
  279.         9. end-tag: P 
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301. Berners-Lee & Connolly      Standards Track                    [Page 11] 
  302.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  303.  
  304.     The start symbol of the DTD grammar is HTML, and the productions are    given in the public text identified by `-//IETF//DTD HTML 2.0//EN'    (9.1, "HTML DTD"). The terminals above parse as: 
  305.  
  306.        HTML         |         \-HEAD         |  |         |  \-TITLE         |      |         |      \-<TITLE>         |      |         |      \-"Parsing Example"         |      |         |      \-</TITLE>         |         \-BODY           |           \-P             |             \-<P>             |             \-"Some text. "             |             \-EM             |  |             |  \-<EM>             |  |             |  \-"*wow*"             |  |             |  \-</EM>             |             \-</P> 
  307.  
  308.    Some of the elements are delimited explicitly by tags, while the    boundaries of others are inferred. The <HTML> element contains a    <HEAD> element and a <BODY> element. The <HEAD> contains <TITLE>,    which is explicitly delimited by start- and end-tags. 
  309.  
  310. 3.2. HTML Lexical Syntax 
  311.  
  312.    SGML specifies an abstract syntax and a reference concrete syntax.    Aside from certain quantities and capacities (e.g. the limit on the    length of a name), all HTML documents use the reference concrete    syntax. In particular, all markup characters are in the repertoire of    [ISO-646]. Data characters are drawn from the document character set    (see 6, "Characters, Words, and Paragraphs"). 
  313.  
  314.  
  315.  
  316.  Berners-Lee & Connolly      Standards Track                    [Page 12] 
  317.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  318.  
  319.     A complete discussion of SGML parsing, e.g. the mapping of a sequence    of characters to a sequence of tags and data, is left to the SGML    standard[SGML]. This section is only a summary. 
  320.  
  321. 3.2.1. Data Characters 
  322.  
  323.    Any sequence of characters that do not constitute markup (see 9.6    "Delimiter Recognition" of [SGML]) are mapped directly to strings of    data characters. Some markup also maps to data character strings.    Numeric character references map to single-character strings, via the    document character set. Each reference to one of the general entities    defined in the HTML DTD maps to a single-character string. 
  324.  
  325.    For example, 
  326.  
  327.     abc<def    => "abc","<","def"     abc<def   => "abc","<","def" 
  328.  
  329.    The terminating semicolon on entity or numeric character references    is only necessary when the character following the reference would    otherwise be recognized as part of the name (see 9.4.5 "Reference    End" in [SGML]). 
  330.  
  331.     abc < def     => "abc ","<"," def"     abc < def    => "abc ","<"," def" 
  332.  
  333.    An ampersand is only recognized as markup when it is followed by a    letter or a `#' and a digit: 
  334.  
  335.     abc & lt def    => "abc & lt def"     abc &# 60 def    => "abc &# 60 def" 
  336.  
  337.    A useful technique for translating plain text to HTML is to replace    each '<', '&', and '>' by an entity reference or numeric character    reference as follows: 
  338.  
  339.                      ENTITY      NUMERIC            CHARACTER REFERENCE   CHAR REF     CHARACTER DESCRIPTION            --------- ----------  -----------  ---------------------              &       &       &        Ampersand              <       <        <        Less than              >       >        >        Greater than 
  340.  
  341.         NOTE - There are SGML mechanisms, CDATA and RCDATA         declared content, that allow most `<', `>', and `&'         characters to be entered without the use of entity         references. Because these mechanisms tend to be used and         implemented inconsistently, and because they conflict 
  342.  
  343.  
  344.  
  345. Berners-Lee & Connolly      Standards Track                    [Page 13] 
  346.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  347.  
  348.          with techniques for reducing HTML to 7 bit ASCII for         transport, they are deprecated in this version of HTML.         See 5.5.2.1, "Example and Listing: XMP, LISTING". 
  349.  
  350. 3.2.2. Tags 
  351.  
  352.    Tags delimit elements such as 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 `>'; end tags are delimited by `</' and `>'. An    example is: 
  353.  
  354.    <H1>This is a Heading</H1> 
  355.  
  356.    Some elements only have a start-tag without an end-tag. For example,    to create a line break, 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. 
  357.  
  358.    The content of an element is a sequence of data character strings and    nested elements. Some elements, such as anchors, cannot be nested.    Anchors and character highlighting may be put inside other    constructs. See the HTML DTD, 9.1, "HTML DTD" for full details. 
  359.  
  360.       NOTE - The SGML declaration for HTML specifies SHORTTAG YES, which       means that there are other valid syntaxes for tags, such as NET       tags, `<EM/.../'; empty start tags, `<>'; and empty end-tags,       `</>'. Until support for these idioms is widely deployed, their       use is strongly discouraged. 
  361.  
  362. 3.2.3. Names 
  363.  
  364.    A name consists of a letter followed by letters, digits, periods, or    hyphens. The length of a name is limited to 72 characters by the    `NAMELEN' parameter in the SGML declaration for HTML, 9.5, "SGML    Declaration for HTML". Element and attribute names are not case    sensitive, but entity names are.  For example, `<BLOCKQUOTE>',    `<BlockQuote>', and `<blockquote>' are equivalent, whereas `&' is    different from `&'. 
  365.  
  366.    In a start-tag, the element name must immediately follow the tag open    delimiter `<'. 
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374. Berners-Lee & Connolly      Standards Track                    [Page 14] 
  375.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  376.  
  377.  3.2.4. Attributes 
  378.  
  379.    In a start-tag, white space and attributes are allowed between the    element name and the closing delimiter. An attribute specification    typically consists of an attribute name, an equal sign, and a value,    though some attribute specifications may be just a name token. White    space is allowed around the equal sign. 
  380.  
  381.    The value of the attribute may be either: 
  382.  
  383.         * A string literal, delimited by single quotes or double         quotes and not containing any occurrences of the delimiting         character. 
  384.  
  385.             NOTE - Some historical implementations consider any             occurrence of the `>' character to signal the end of             a tag. For compatibility with such implementations,             when `>' appears in an attribute value, it should be             represented with a numeric character reference. For             example, `<IMG SRC="eq1.jpg" alt="a>b">' should be             written `<IMG SRC="eq1.jpg" alt="a>b">' or `<IMG             SRC="eq1.jpg" alt="a>b">'. 
  386.  
  387.         * A name token (a sequence of letters, digits, periods, or         hyphens). Name tokens are not case sensitive. 
  388.  
  389.             NOTE - Some historical implementations allow any             character except space or `>' in a name token. 
  390.  
  391.    In this example, <img> is the element name, src is the attribute    name, and `http://host/dir/file.gif' is the attribute value: 
  392.  
  393.    <img src='http://host/dir/file.gif'> 
  394.  
  395.    A useful technique for computing an attribute value literal for a    given string is to replace each quote and white space character by an    entity reference or numeric character reference as follows: 
  396.  
  397.                      ENTITY      NUMERIC            CHARACTER REFERENCE   CHAR REF     CHARACTER DESCRIPTION            --------- ----------  -----------  ---------------------              HT                            Tab              LF                           Line Feed              CR                           Carriage Return              SP                           Space              "       "      "        Quotation mark              &       &       &        Ampersand 
  398.  
  399.  
  400.  
  401.  Berners-Lee & Connolly      Standards Track                    [Page 15] 
  402.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  403.  
  404.     For example: 
  405.  
  406.    <IMG SRC="image.jpg" alt="First "real" example"> 
  407.  
  408.    The `NAMELEN' parameter in the SGML declaration (9.5, "SGML    Declaration for HTML") limits the length of an attribute value to    1024 characters. 
  409.  
  410.    Attributes such as ISMAP and COMPACT may be written using a minimized    syntax (see 7.9.1.2 "Omitted Attribute Name" in [SGML]). The markup: 
  411.  
  412.    <UL COMPACT="compact"> 
  413.  
  414.    can be written using a minimized syntax: 
  415.  
  416.    <UL COMPACT> 
  417.  
  418.    NOTE - Some historical implementations only understand the minimized    syntax. 
  419.  
  420. 3.2.5. Comments 
  421.  
  422.    To include comments in an HTML document, use a comment declaration. A    comment declaration consists of `<!' followed by zero or more    comments followed by `>'. Each comment starts with `--' and includes    all text up to and including the next occurrence of `--'. In a    comment declaration, white space is allowed after each comment, but    not before the first comment.  The entire comment declaration is    ignored. 
  423.  
  424.       NOTE - Some historical HTML implementations incorrectly consider       any `>' character to be the termination of a comment. 
  425.  
  426.    For example: 
  427.  
  428.     <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">     <HEAD>     <TITLE>HTML Comment Example</TITLE>     <!-- Id: html-sgml.sgm,v 1.5 1995/05/26 21:29:50 connolly Exp  -->     <!-- another -- -- comment -->     <!>     </HEAD>     <BODY>     <p> <!- not a comment, just regular old data characters -> 
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436. Berners-Lee & Connolly      Standards Track                    [Page 16] 
  437.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  438.  
  439.  3.3. HTML Public Text Identifiers 
  440.  
  441.    To identify information as an HTML document conforming to this    specification, each document must start with one of the following    document type declarations. 
  442.  
  443.    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> 
  444.  
  445.    This document type declaration refers to the HTML DTD in 9.1, "HTML    DTD". 
  446.  
  447.       NOTE - If the body of a `text/html' message entity does not begin       with a document type declaration, an HTML user agent should infer       the above document type declaration. 
  448.  
  449.    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0 Level 2//EN"> 
  450.  
  451.    This document type declaration also refers to the HTML DTD which    appears in 9.1, "HTML DTD". 
  452.  
  453.    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0 Level 1//EN"> 
  454.  
  455.    This document type declaration refers to the level 1 HTML DTD in 9.3,    "Level 1 HTML DTD". Form elements must not occur in level 1    documents. 
  456.  
  457.    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0 Strict//EN">    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0 Strict Level 1//EN"> 
  458.  
  459.    These two document type declarations refer to the HTML DTD in 9.2,    "Strict HTML DTD" and 9.4, "Strict Level 1 HTML DTD". They refer to    the more structurally rigid definition of HTML. 
  460.  
  461.    HTML user agents may support other document types. In particular,    they may support other formal public identifiers, or other document    types altogether. They may support an internal declaration subset    with supplemental entity, element, and other markup declarations. 
  462.  
  463. 3.4. Example HTML Document 
  464.  
  465.     <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">     <HTML>     <!-- Here's a good place to put a comment. -->     <HEAD>     <TITLE>Structural Example</TITLE>     </HEAD><BODY>     <H1>First Header</H1>     <P>This is a paragraph in the example HTML file. Keep in mind 
  466.  
  467.  
  468.  
  469. Berners-Lee & Connolly      Standards Track                    [Page 17] 
  470.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  471.  
  472.      that the title does not appear in the document text, but that     the header (defined by H1) does.</P>     <OL>     <LI>First item in an ordered list.     <LI>Second item in an ordered list.       <UL COMPACT>       <LI> Note that lists can be nested;       <LI> Whitespace may be used to assist in reading the            HTML source.       </UL>     <LI>Third item in an ordered list.     </OL>     <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. <EM>This sentence     of the paragraph is emphasized.</EM> Note that the </P>     end tag has been omitted.     <P>     <IMG SRC ="triangle.xbm" alt="Warning: ">     Be sure to read these <b>bold instructions</b>.     </BODY></HTML> 
  473.  
  474. 4. HTML as an Internet Media Type 
  475.  
  476.    An HTML user agent allows users to interact with resources which have    HTML representations. At a minimum, it must allow users to examine    and navigate the content of HTML level 1 documents. HTML user agents    should be able to preserve all formatting distinctions represented in    an HTML document, and be able to simultaneously present resources    referred to by IMG elements (they may ignore some formatting    distinctions or IMG resources at the request of the user). Level 2    HTML user agents should support form entry and submission. 
  477.  
  478. 4.1. text/html media type 
  479.  
  480.    This specification defines the Internet Media Type [IMEDIA] (formerly    referred to as the Content Type [MIME]) called `text/html'. The    following is to be registered with [IANA]. 
  481.  
  482.     Media Type name             text 
  483.  
  484.     Media subtype name             html 
  485.  
  486.     Required parameters             none 
  487.  
  488.  
  489.  
  490.  Berners-Lee & Connolly      Standards Track                    [Page 18] 
  491.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  492.  
  493.      Optional parameters             level, charset 
  494.  
  495.     Encoding considerations             any encoding is allowed 
  496.  
  497.     Security considerations             see 10, "Security Considerations" 
  498.  
  499.     The optional parameters are defined as follows: 
  500.  
  501.     Level             The level parameter specifies the feature set used in             the document. The level is an integer number, implying             that any features of same or lower level may be present             in the document. Level 1 is all features defined in this             specification except those that require the <FORM>             element. Level 2 includes form processing. Level 2 is             the default. 
  502.  
  503.     Charset             The charset parameter (as defined in section 7.1.1 of             RFC 1521[MIME]) may be given to specify the character             encoding scheme used to represent the HTML document as a             sequence of octets. The default value is outside the             scope of this specification; but for example, the             default is `US-ASCII' in the context of MIME mail, and             `ISO-8859-1' in the context of HTTP [HTTP]. 
  504.  
  505. 4.2. HTML Document Representation 
  506.  
  507.    A message entity with a content type of `text/html' represents an    HTML document, consisting of a single text entity. The `charset'    parameter (whether implicit or explicit) identifies a character    encoding scheme. The text entity consists of the characters    determined by this character encoding scheme and the octets of the    body of the message entity. 
  508.  
  509. 4.2.1. Undeclared Markup Error Handling 
  510.  
  511.    To facilitate experimentation and interoperability between    implementations of various versions of HTML, the installed base of    HTML user agents supports a superset of the HTML 2.0 language by    reducing it to HTML 2.0: markup in the form of a start-tag or end-    tag, whose generic identifier is not declared is mapped to nothing    during tokenization. Undeclared attributes are treated similarly. The    entire attribute specification of an unknown attribute (i.e., the    unknown attribute and its value, if any) should be ignored. On the 
  512.  
  513.  
  514.  
  515. Berners-Lee & Connolly      Standards Track                    [Page 19] 
  516.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  517.  
  518.     other hand, references to undeclared entities should be treated as    data characters. 
  519.  
  520.    For example: 
  521.  
  522.     <div class=chapter><h1>foo</h1><p>...</div>       => <H1>,"foo",</H1>,<P>,"..."     xxx <P ID=z23> yyy       => "xxx ",<P>," yyy     Let α & β be finite sets.       => "Let α & β be finite sets." 
  523.  
  524.    Support for notifying the user of such errors is encouraged. 
  525.  
  526.    Information providers are warned that this convention is not binding:    unspecified behavior may result, as such markup does not conform to    this specification. 
  527.  
  528. 4.2.2. Conventional Representation of Newlines 
  529.  
  530.    SGML specifies that a text entity is a sequence of records, each    beginning with a record start character and ending with a record end    character (code positions 10 and 13 respectively) (section 7.6.1,    "Record Boundaries" in [SGML]). 
  531.  
  532.    [MIME] specifies that a body of type `text/*' is a sequence of lines,    each terminated by CRLF, that is, octets 13, 10. 
  533.  
  534.    In practice, HTML documents are frequently represented and    transmitted using an end of line convention that depends on the    conventions of the source of the document; frequently, that    representation consists of CR only, LF only, or a CR LF sequence.    Hence the decoding of the octets will often result in a text entity    with some missing record start and record end characters. 
  535.  
  536.    Since there is no ambiguity, HTML user agents are encouraged to infer    the missing record start and end characters. 
  537.  
  538.    An HTML user agent should treat end of line in any of its variations    as a word space in all contexts except preformatted text. Within    preformatted text, an HTML user agent should treat any of the three    common representations of end-of-line as starting a new line. 
  539.  
  540. 5. Document Structure 
  541.  
  542.    An HTML document is a tree of elements, including a head and body,    headings, paragraphs, lists, etc. Form elements are discussed in 8,    "Forms". 
  543.  
  544.  
  545.  
  546. Berners-Lee & Connolly      Standards Track                    [Page 20] 
  547.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  548.  
  549.  5.1. Document Element: HTML 
  550.  
  551.    The HTML document element consists of a head and a body, much like a    memo or a mail message. The head contains the title and optional    elements. The body is a text flow consisting of paragraphs, lists,    and other elements. 
  552.  
  553. 5.2. Head: HEAD 
  554.  
  555.    The head of an HTML document is an unordered collection of    information about the document. For example: 
  556.  
  557.     <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">     <HEAD>     <TITLE>Introduction to HTML</TITLE>     </HEAD>     ... 
  558.  
  559. 5.2.1. Title: TITLE 
  560.  
  561.    Every HTML document must contain a <TITLE> element. 
  562.  
  563.    The title should identify the contents of the document in a global    context. A short title, such as "Introduction" may be meaningless out    of context. A title such as "Introduction to HTML Elements" is more    appropriate. 
  564.  
  565.       NOTE - The length of a title is not limited; however, long titles       may be truncated in some applications. To minimize this       possibility, titles should be fewer than 64 characters. 
  566.  
  567.    A user agent may display the title of a document in a history list or    as a label for the window displaying the document. This differs from    headings (5.4, "Headings: H1 ... H6"), which are typically displayed    within the body text flow. 
  568.  
  569. 5.2.2. Base Address: BASE 
  570.  
  571.    The optional <BASE> element provides a base address for interpreting    relative URLs when the document is read out of context (see 7,    "Hyperlinks"). The value of the HREF attribute must be an absolute    URI. 
  572.  
  573. 5.2.3. Keyword Index: ISINDEX 
  574.  
  575.    The <ISINDEX> element indicates that the user agent should allow the    user to search an index by giving keywords. See 7.5, "Queries and    Indexes" for details. 
  576.  
  577.  
  578.  
  579. Berners-Lee & Connolly      Standards Track                    [Page 21] 
  580.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  581.  
  582.  5.2.4. Link: LINK 
  583.  
  584.    The <LINK> element represents a hyperlink (see 7, "Hyperlinks").  Any    number of LINK elements may occur in the <HEAD> element of an HTML    document. It has the same attributes as the <A> element (see 5.7.3,    "Anchor: A"). 
  585.  
  586.    The <LINK> element is typically used to indicate authorship, related    indexes and glossaries, older or more recent versions, document    hierarchy, associated resources such as style sheets, etc. 
  587.  
  588. 5.2.5. Associated Meta-information: META 
  589.  
  590.    The <META> element is an extensible container for use in identifying    specialized document meta-information.  Meta-information has two main    functions: 
  591.  
  592.         * to provide a means to discover that the data set exists         and how it might be obtained or accessed; and 
  593.  
  594.         * to document the content, quality, and features of a data         set, indicating its fitness for use. 
  595.  
  596.    Each <META> element specifies a name/value pair. If multiple META    elements are provided with the same name, their combined contents--    concatenated as a comma-separated list--is the value associated with    that name. 
  597.  
  598.         NOTE - The <META> element should not be used where a         specific element, such as <TITLE>, would be more         appropriate. Rather than a <META> element with a URI as         the value of the CONTENT attribute, use a <LINK>         element. 
  599.  
  600.    HTTP servers may read the content of the document <HEAD> to generate    header fields corresponding to any elements defining a value for the    attribute HTTP-EQUIV. 
  601.  
  602.         NOTE - The method by which the server extracts document         meta-information is unspecified and not mandatory. The         <META> element only provides an extensible mechanism for         identifying and embedding document meta-information --         how it may be used is up to the individual server         implementation and the HTML user agent. 
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610. Berners-Lee & Connolly      Standards Track                    [Page 22] 
  611.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  612.  
  613.      Attributes of the META element: 
  614.  
  615.     HTTP-EQUIV             binds the element to an HTTP header field. An HTTP             server may use this information to process the document.             In particular, it may include a header field in the             responses to requests for this document: the header name             is taken from the HTTP-EQUIV attribute value, and the             header value is taken from the value of the CONTENT             attribute. HTTP header names are not case sensitive. 
  616.  
  617.     NAME             specifies the name of the name/value pair. If not             present, HTTP-EQUIV gives the name. 
  618.  
  619.     CONTENT             specifies the value of the name/value pair. 
  620.  
  621.     Examples 
  622.  
  623.     If the document contains: 
  624.  
  625.     <META HTTP-EQUIV="Expires"           CONTENT="Tue, 04 Dec 1993 21:29:02 GMT">     <meta http-equiv="Keywords" CONTENT="Fred">     <META HTTP-EQUIV="Reply-to"           content="fielding@ics.uci.edu (Roy Fielding)">     <Meta Http-equiv="Keywords" CONTENT="Barney"> 
  626.  
  627.     then the server may include the following header fields: 
  628.  
  629.     Expires: Tue, 04 Dec 1993 21:29:02 GMT     Keywords: Fred, Barney     Reply-to: fielding@ics.uci.edu (Roy Fielding) 
  630.  
  631.     as part of the HTTP response to a `GET' or `HEAD' request for     that document. 
  632.  
  633.     An HTTP server must not use the <META> element to form an HTTP     response header unless the HTTP-EQUIV attribute is present. 
  634.  
  635.     An HTTP server may disregard any <META> elements that specify     information controlled by the HTTP server, for example `Server', 
  636.  
  637.     `Date', and `Last-modified'. 
  638.  
  639.  
  640.  
  641.  
  642.  
  643.  Berners-Lee & Connolly      Standards Track                    [Page 23] 
  644.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  645.  
  646.  5.2.6. Next Id: NEXTID 
  647.  
  648.    The <NEXTID> element is included for historical reasons only.  HTML    documents should not contain <NEXTID> elements. 
  649.  
  650.    The <NEXTID> element gives a hint for the name to use for a new <A>    element when editing an HTML document. It should be distinct from all    NAME attribute values on <A> elements. For example: 
  651.  
  652.    <NEXTID N=Z27> 
  653.  
  654. 5.3. Body: BODY 
  655.  
  656.    The <BODY> element contains the text flow of the document, including    headings, paragraphs, lists, etc. 
  657.  
  658.    For example: 
  659.  
  660.     <BODY>     <h1>Important Stuff</h1>     <p>Explanation about important stuff...     </BODY> 
  661.  
  662. 5.4. Headings: H1 ... H6 
  663.  
  664.    The six heading elements, <H1> through <H6>, denote section headings.    Although the order and occurrence of headings is not constrained by    the HTML DTD, documents should not skip levels (for example, from H1    to H3), as converting such documents to other representations is    often problematic. 
  665.  
  666.    Example of use: 
  667.  
  668.     <H1>This is a heading</H1>     Here is some text     <H2>Second level heading</H2>     Here is some more text. 
  669.  
  670.     Typical renderings are: 
  671.  
  672.     H1             Bold, very-large font, centered. One or two blank lines             above and below. 
  673.  
  674.     H2             Bold, large font, flush-left. One or two blank lines             above and below. 
  675.  
  676.  
  677.  
  678.  Berners-Lee & Connolly      Standards Track                    [Page 24] 
  679.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  680.  
  681.      H3             Italic, large font, slightly indented from the left             margin. One or two blank lines above and below. 
  682.  
  683.     H4             Bold, normal font, indented more than H3. One blank line             above and below. 
  684.  
  685.     H5             Italic, normal font, indented as H4. One blank line             above. 
  686.  
  687.     H6             Bold, indented same as normal text, more than H5. One             blank line above. 
  688.  
  689. 5.5. Block Structuring Elements 
  690.  
  691.    Block structuring elements include paragraphs, lists, and block    quotes. They must not contain heading elements, but they may contain    phrase markup, and in some cases, they may be nested. 
  692.  
  693. 5.5.1. Paragraph: P 
  694.  
  695.    The <P> element indicates a paragraph. The exact indentation, leading    space, etc. of a paragraph is not specified and may be a function of    other tags, style sheets, etc. 
  696.  
  697.    Typically, paragraphs are surrounded by a vertical space of one line    or half a line. The first line in a paragraph is indented in some    cases. 
  698.  
  699.    Example of use: 
  700.  
  701.     <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>     <P>This is the text of a third paragraph.</P> 
  702.  
  703. 5.5.2. Preformatted Text: PRE 
  704.  
  705.    The <PRE> element represents a character cell block of text and is    suitable for text that has been formatted for a monospaced font. 
  706.  
  707.    The <PRE> tag may be used with the optional WIDTH attribute. The    WIDTH attribute specifies the maximum number of characters for a line 
  708.  
  709.  
  710.  
  711. Berners-Lee & Connolly      Standards Track                    [Page 25] 
  712.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  713.  
  714.     and allows the HTML user agent to select a suitable font and    indentation. 
  715.  
  716.    Within preformatted text: 
  717.  
  718.         * Line breaks within the text are rendered as a move to the         beginning of the next line. 
  719.  
  720.             NOTE - References to the "beginning of a new line"             do not imply that the renderer is forbidden from             using a constant left indent for rendering             preformatted text. The left indent may be             constrained by the width required. 
  721.  
  722.         * Anchor elements and phrase markup may be used. 
  723.  
  724.             NOTE - Constraints on the processing of <PRE>             content may limit or prevent the ability of the HTML             user agent to faithfully render phrase markup. 
  725.  
  726.         * Elements that define paragraph formatting (headings,         address, etc.) must not be used. 
  727.  
  728.             NOTE - Some historical documents contain <P> tags in             <PRE> elements. User agents are encouraged to treat             this as a line break. A <P> tag followed by a             newline character should produce only one line             break, not a line break plus a blank line. 
  729.  
  730.         * The horizontal tab character (code position 9 in the HTML         document character set) must be interpreted as the smallest         positive nonzero number of spaces which will leave the         number of characters so far on the line as a multiple of 8.         Documents should not contain tab characters, as they are not         supported consistently. 
  731.  
  732.     Example of use: 
  733.  
  734.     <PRE>     Line 1.            Line 2 is to the right of line 1.     <a href="abc">abc</a>            Line 3 aligns with line 2.            <a href="def">def</a>     </PRE> 
  735.  
  736.  
  737.  
  738.  
  739.  
  740.  
  741.  
  742.  Berners-Lee & Connolly      Standards Track                    [Page 26] 
  743.  RFC 1866            Hypertext Markup Language - 2.0        November 1995  
  744.  
  745. 5.5.2.1. Example and Listing: XMP, LISTING 
  746.  
  747.    The <XMP> and <LISTING> elements are similar to the <PRE> element,    but they have a different syntax. Their content is declared as CDATA,    which means that no markup except the end-tag open delimiter-in-    context is recognized (see 9.6 "Delimiter Recognition" of [SGML]). 
  748.  
  749.       NOTE - In a previous draft of the HTML specification, the syntax       of <XMP> and <LISTING> elements allowed closing tags to be treated       as data characters, as long as the tag name was not <XMP> or       <LISTING>, respectively. 
  750.  
  751.    Since CDATA declared content has a number of unfortunate interactions    with processing techniques and tends to be used and implemented    inconsistently, HTML documents should not contain <XMP> nor <LISTING>    elements -- the <PRE> tag is more expressive and more consistently    supported. 
  752.  
  753.    The <LISTING> element should be rendered so that at least 132    characters fit on a line. The <XMP> element should be rendered so    that at least 80 characters fit on a line but is otherwise identical    to the <LISTING> element. 
  754.  
  755.       NOTE - In a previous draft, HTML included a <PLAINTEXT> element       that is similar to the <LISTING> element, except that there is no       closing tag: all characters after the <PLAINTEXT> start-tag are       data. 
  756.  
  757. 5.5.3. Address: ADDRESS 
  758.  
  759.    The <ADDRESS> element contains such information as address, signature    and authorship, often at the beginning or end of the body of a    document. 
  760.  
  761.    Typically, the <ADDRESS> element is rendered in an italic typeface    and may be indented. 
  762.  
  763.    Example of use: 
  764.  
  765.     <ADDRESS>     Newsletter editor<BR>     J.R. Brown<BR>     JimquickPost News, Jimquick, CT 01234<BR>     Tel (123) 456 7890     </ADDRESS> 
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  Berners-Lee & Connolly      Standards Track                    [Page 27] 
  772.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  773.  
  774.  5.5.4. Block Quote: BLOCKQUOTE 
  775.  
  776.    The <BLOCKQUOTE> element contains text quoted from another source. 
  777.  
  778.    A typical rendering might be a slight extra left and right indent,    and/or italic font. The <BLOCKQUOTE> typically provides space above    and below the quote. 
  779.  
  780.    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. 
  781.  
  782.    Example of use: 
  783.  
  784.     I think the play ends     <BLOCKQUOTE>     <P>Soft you now, the fair Ophelia. Nymph, in thy orisons, be all     my sins remembered.     </BLOCKQUOTE>     but I am not sure. 
  785.  
  786. 5.6. List Elements 
  787.  
  788.    HTML includes a number of list elements. They may be used in    combination; for example, a <OL> may be nested in an <LI> element of    a <UL>. 
  789.  
  790.    The COMPACT attribute suggests that a compact rendering be used. 
  791.  
  792. 5.6.1. Unordered List: UL, LI 
  793.  
  794.    The <UL> represents a list of items -- typically rendered as a    bulleted list. 
  795.  
  796.    The content of a <UL> element is a sequence of <LI> elements.  For    example: 
  797.  
  798.     <UL>     <LI>First list item     <LI>Second list item      <p>second paragraph of second item     <LI>Third list item     </UL> 
  799.  
  800. 5.6.2. Ordered List: OL 
  801.  
  802.    The <OL> element represents an ordered list of items, sorted by    sequence or order of importance. It is typically rendered as a 
  803.  
  804.  
  805.  
  806. Berners-Lee & Connolly      Standards Track                    [Page 28] 
  807.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  808.  
  809.     numbered list. 
  810.  
  811.    The content of a <OL> element is a sequence of <LI> elements.  For    example: 
  812.  
  813.     <OL>     <LI>Click the Web button to open URI window.     <LI>Enter the URI number in the text field of the Open URI     window. The Web document you specified is displayed.       <ol>        <li>substep 1        <li>substep 2       </ol>     <LI>Click highlighted text to move from one link to another.     </OL> 
  814.  
  815. 5.6.3. Directory List: DIR 
  816.  
  817.    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. 
  818.  
  819.    The content of a <DIR> element is a sequence of <LI> elements.    Nested block elements are not allowed in the content of <DIR>    elements. For example: 
  820.  
  821.     <DIR>     <LI>A-H<LI>I-M     <LI>M-R<LI>S-Z     </DIR> 
  822.  
  823. 5.6.4. Menu List: MENU 
  824.  
  825.    The <MENU> element is a list of items with typically one line per    item. The menu list style is typically more compact than the style of    an unordered list. 
  826.  
  827.    The content of a <MENU> element is a sequence of <LI> elements.    Nested block elements are not allowed in the content of <MENU>    elements. For example: 
  828.  
  829.     <MENU>     <LI>First item in the list.     <LI>Second item in the list.     <LI>Third item in the list.     </MENU> 
  830.  
  831.  
  832.  
  833.  Berners-Lee & Connolly      Standards Track                    [Page 29] 
  834.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  835.  
  836.  5.6.5. Definition List: DL, DT, DD 
  837.  
  838.    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. 
  839.  
  840.    The content of a <DL> element is a sequence of <DT> elements and/or    <DD> elements, usually in pairs. Multiple <DT> may be paired with a    single <DD> element. Documents should not contain multiple    consecutive <DD> elements. 
  841.  
  842.    Example of use: 
  843.  
  844.     <DL>     <DT>Term<DD>This is the definition of the first term.     <DT>Term<DD>This is the definition of the second term.     </DL> 
  845.  
  846.    If the DT term does not fit in the DT column (typically 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. 
  847.  
  848.    The optional COMPACT attribute suggests that a compact rendering be    used, because the list items are small and/or the entire list is    large. 
  849.  
  850.    Unless the COMPACT attribute is present, an 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. 
  851.  
  852.     <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> 
  853.  
  854. 5.7. Phrase Markup 
  855.  
  856.    Phrases may be marked up according to idiomatic usage, typographic    appearance, or for use as hyperlink anchors. 
  857.  
  858.    User agents must render highlighted phrases 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. 
  859.  
  860.    Phrase elements may be nested within the content of other phrase    elements; however, HTML user agents may render nested phrase elements 
  861.  
  862.  
  863.  
  864. Berners-Lee & Connolly      Standards Track                    [Page 30] 
  865.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  866.  
  867.     indistinctly from non-nested elements: 
  868.  
  869.    plain <B>bold <I>italic</I></B> may be rendered    the same as plain <B>bold </B><I>italic</I> 
  870.  
  871. 5.7.1. Idiomatic Elements 
  872.  
  873.    Phrases may be marked up to indicate certain idioms. 
  874.  
  875.       NOTE - User agents may support the <DFN> element, not included in       this specification, as it has been deployed to some extent. It is       used to indicate the defining instance of a term, and it is       typically rendered in italic or bold italic. 
  876.  
  877. 5.7.1.1. Citation: CITE 
  878.  
  879.       The <CITE> element is used to indicate the title of a book or       other citation. It is typically rendered as italics. For example: 
  880.  
  881.       He just couldn't get enough of <cite>The Grapes of Wrath</cite>. 
  882.  
  883. 5.7.1.2. Code: CODE 
  884.  
  885.       The <CODE> element indicates an example of code, typically       rendered in a mono-spaced font. The <CODE> element is intended for       short words or phrases of code; the <PRE> block structuring       element (5.5.2, "Preformatted Text: PRE") is more appropriate        for multiple-line listings. For example: 
  886.  
  887.       The expression <code>x += 1</code>       is short for <code>x = x + 1</code>. 
  888.  
  889. 5.7.1.3. Emphasis: EM 
  890.  
  891.       The <EM> element indicates an emphasized phrase, typically       rendered as italics. For example: 
  892.  
  893.       A singular subject <em>always</em> takes a singular verb. 
  894.  
  895. 5.7.1.4. Keyboard: KBD 
  896.  
  897.       The <KBD> element indicates text typed by a user, typically       rendered in a mono-spaced font. This is commonly used in       instruction manuals. For example: 
  898.  
  899.       Enter <kbd>FIND IT</kbd> to search the database. 
  900.  
  901.  
  902.  
  903.  
  904.  
  905. Berners-Lee & Connolly      Standards Track                    [Page 31] 
  906.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  907.  
  908.  5.7.1.5. Sample: SAMP 
  909.  
  910.       The <SAMP> element indicates a sequence of literal characters,       typically rendered in a mono-spaced font. For example:        The only word containing the letters <samp>mt</samp> is dreamt. 
  911.  
  912. 5.7.1.6. Strong Emphasis: STRONG 
  913.  
  914.       The <STRONG> element indicates strong emphasis, typically rendered       in bold. For example: 
  915.  
  916.       <strong>STOP</strong>, or I'll say "<strong>STOP</strong>" again! 
  917.  
  918. 5.7.1.7. Variable: VAR 
  919.  
  920.       The <VAR> element indicates a placeholder variable, typically       rendered as italic. For example: 
  921.  
  922.       Type <SAMP>html-check <VAR>file</VAR> | more</SAMP>       to check <VAR>file</VAR> for markup errors. 
  923.  
  924. 5.7.2. Typographic Elements 
  925.  
  926.       Typographic elements are used to specify the format of marked       text. 
  927.  
  928.       Typical renderings for idiomatic elements may vary between user       agents. If a specific rendering is necessary -- for example, when       referring to a specific text attribute as in "The italic parts are       mandatory" -- a typographic element can be used to ensure that the       intended typography is used where possible. 
  929.  
  930.       NOTE - User agents may support some typographic elements not       included in this specification, as they have been deployed to some       extent. The <STRIKE> element indicates horizontal line through the       characters, and the <U> element indicates an underline. 
  931.  
  932. 5.7.2.1. Bold: B 
  933.  
  934.    The <B> element indicates bold text. Where bold typography is    unavailable, an alternative representation may be used. 
  935.  
  936. 5.7.2.2. Italic: I 
  937.  
  938.    The <I> element indicates italic text. Where italic typography is    unavailable, an alternative representation may be used. 
  939.  
  940.  
  941.  
  942.  Berners-Lee & Connolly      Standards Track                    [Page 32] 
  943.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  944.  
  945.  5.7.2.3. Teletype: TT 
  946.  
  947.    The <TT> element indicates teletype (monospaced )text. Where a    teletype font is unavailable, an alternative representation may be    used. 
  948.  
  949. 5.7.3. Anchor: A 
  950.  
  951.    The <A> element indicates a hyperlink anchor (see 7, "Hyperlinks").    At least one of the NAME and HREF attributes should be present.    Attributes of the <A> element: 
  952.  
  953.     HREF             gives the URI of the head anchor of a hyperlink. 
  954.  
  955.     NAME             gives the name of the anchor, and makes it available as             a head of a hyperlink. 
  956.  
  957.     TITLE             suggests a title for the destination resource --             advisory only. The TITLE attribute may be used: 
  958.  
  959.                 * for display prior to accessing the destination                 resource, for example, as a margin note or on a                 small box while the mouse is over the anchor, or                 while the document is being loaded; 
  960.  
  961.                 * for resources that do not include a title, such as                 graphics, plain text and Gopher menus, for use as a                 window title. 
  962.  
  963.     REL             The REL attribute gives the relationship(s) described by             the hyperlink. The value is a whitespace separated list             of relationship names. The semantics of link             relationships are not specified in this document. 
  964.  
  965.     REV             same as the REL attribute, but the semantics of the             relationship are in the reverse direction. A link from A             to B with REL="X" expresses the same relationship as a             link from B to A with REV="X". An anchor may have both             REL and REV attributes. 
  966.  
  967.     URN             specifies a preferred, more persistent identifier for             the head anchor of the hyperlink. The syntax and 
  968.  
  969.  
  970.  
  971. Berners-Lee & Connolly      Standards Track                    [Page 33] 
  972.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  973.  
  974.              semantics of the URN attribute are not yet specified. 
  975.  
  976.     METHODS             specifies methods to be used in accessing the             destination, as a whitespace-separated list of names.             The set of applicable names is a function of the scheme             of the URI in the HREF attribute. For similar reasons as             for the TITLE attribute, it may be useful to include the             information in advance in the link. For example, the             HTML user agent may chose a different rendering as a             function of the methods allowed; for example, something             that is searchable may get a different icon. 
  977.  
  978. 5.8. Line Break: BR 
  979.  
  980.    The <BR> element specifies a line break between words (see 6,    "Characters, Words, and Paragraphs"). For example: 
  981.  
  982.     <P> Pease porridge hot<BR>     Pease porridge cold<BR>     Pease porridge in the pot<BR>     Nine days old. 
  983.  
  984. 5.9. Horizontal Rule: HR 
  985.  
  986.    The <HR> element is a divider between sections of text; typically a    full width horizontal rule or equivalent graphic.  For example: 
  987.  
  988.     <HR>     <ADDRESS>February 8, 1995, CERN</ADDRESS>     </BODY> 
  989.  
  990. 5.10. Image: IMG 
  991.  
  992.    The <IMG> element refers to an image or icon via a hyperlink (see    7.3, "Simultaneous Presentation of Image Resources"). 
  993.  
  994.    HTML user agents may process the value of the ALT attribute as an    alternative to processing the image resource indicated by the SRC    attribute. 
  995.  
  996.       NOTE - Some HTML user agents can process graphics linked via       anchors, but not <IMG> graphics. If a graphic is essential, it       should be referenced from an <A> element rather than an <IMG>       element. If the graphic is not essential, then the <IMG> element       is appropriate. 
  997.  
  998.    Attributes of the <IMG> element: 
  999.  
  1000.  
  1001.  
  1002. Berners-Lee & Connolly      Standards Track                    [Page 34] 
  1003.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1004.  
  1005.      ALIGN             alignment of the image with respect to the text             baseline. 
  1006.  
  1007.                 * `TOP' specifies that the top of the image aligns                 with the tallest item on the line containing the                 image. 
  1008.  
  1009.                 * `MIDDLE' specifies that the center of the image                 aligns with the baseline of the line containing the                 image. 
  1010.  
  1011.                 * `BOTTOM' specifies that the bottom of the image                 aligns with the baseline of the line containing the                 image. 
  1012.  
  1013.     ALT             text to use in place of the referenced image resource,             for example due to processing constraints or user             preference. 
  1014.  
  1015.     ISMAP             indicates an image map (see 7.6, "Image Maps"). 
  1016.  
  1017.     SRC             specifies the URI of the image resource. 
  1018.  
  1019.                 NOTE - In practice, the media types of image                 resources are limited to a few raster graphic                 formats: typically `image/gif', `image/jpeg'. In                 particular, `text/html' resources are not                 intended to be used as image resources. 
  1020.  
  1021.     Examples of use: 
  1022.  
  1023.     <IMG SRC="triangle.xbm" ALT="Warning:"> Be sure     to read these instructions. 
  1024.  
  1025.     <a href="http://machine/htbin/imagemap/sample">     <IMG SRC="sample.xbm" ISMAP>     </a> 
  1026.  
  1027. 6. Characters, Words, and Paragraphs 
  1028.  
  1029.    An HTML user agent should present the body of an HTML document as a    collection of typeset paragraphs and preformatted text.  Except for    preformatted elements (<PRE>, <XMP>, <LISTING>, <TEXTAREA>), each    block structuring element is regarded as a paragraph by taking the 
  1030.  
  1031.  
  1032.  
  1033. Berners-Lee & Connolly      Standards Track                    [Page 35] 
  1034.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1035.  
  1036.     data characters in its content and the content of its descendant    elements, concatenating them, and splitting the result into words,    separated by space, tab, or record end characters (and perhaps hyphen    characters). The sequence of words is typeset as a paragraph by    breaking it into lines. 
  1037.  
  1038. 6.1. The HTML Document Character Set 
  1039.  
  1040.    The document character set specified in 9.5, "SGML Declaration for    HTML" must be supported by HTML user agents. It includes the graphic    characters of Latin Alphabet No. 1, or simply Latin-1.  Latin-1    comprises 191 graphic characters, including the alphabets of most    Western European languages. 
  1041.  
  1042.       NOTE - Use of the non-breaking space and soft hyphen indicator       characters is discouraged because support for them is not widely       deployed. 
  1043.  
  1044.       NOTE - To support non-western writing systems, a larger character       repertoire will be specified in a future version of HTML. The       document character set will be [ISO-10646], or some subset that       agrees with [ISO-10646]; in particular, all numeric character       references must use code positions assigned by [ISO-10646]. 
  1045.  
  1046.    In SGML applications, the use of control characters is limited in    order to maximize the chance of successful interchange over    heterogeneous networks and operating systems. In the HTML document    character set only three control characters are allowed: Horizontal    Tab, Carriage Return, and Line Feed (code positions 9, 13, and 10). 
  1047.  
  1048.    The HTML DTD references the Added Latin 1 entity set, to allow    mnemonic representation of selected Latin 1 characters using only the    widely supported ASCII character repertoire. For example: 
  1049.  
  1050.    Kurt Gödel was a famous logician and mathematician. 
  1051.  
  1052.    See 9.7.2, "ISO Latin 1 Character Entity Set" for a table of the    "Added Latin 1" entities, and 13, "The HTML Coded Character Set" for    a table of the code positions of [ISO 8859-1] and the control    characters in the HTML document character set. 
  1053.  
  1054. 7. Hyperlinks 
  1055.  
  1056.    In addition to general purpose elements such as paragraphs and lists,    HTML documents can express hyperlinks. An HTML user agent allows the    user to navigate these hyperlinks. 
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062. Berners-Lee & Connolly      Standards Track                    [Page 36] 
  1063.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1064.  
  1065.     A hyperlink is a relationship between two anchors, called the head    and the tail of the hyperlink[DEXTER]. Anchors are identified by an    anchor address: an absolute Uniform Resource Identifier (URI),    optionally followed by a '#' and a sequence of characters called a    fragment identifier. For example: 
  1066.  
  1067.    http://www.w3.org/hypertext/WWW/TheProject.html    http://www.w3.org/hypertext/WWW/TheProject.html#z31 
  1068.  
  1069.    In an anchor address, the URI refers to a resource; it may be used in    a variety of information retrieval protocols to obtain an entity that    represents the resource, such as an HTML document. The fragment    identifier, if present, refers to some view on, or portion of the    resource. 
  1070.  
  1071.    Each of the following markup constructs indicates the tail anchor of    a hyperlink or set of hyperlinks: 
  1072.  
  1073.         * <A> elements with HREF present. 
  1074.  
  1075.         * <LINK> elements. 
  1076.  
  1077.         * <IMG> elements. 
  1078.  
  1079.         * <INPUT> elements with the SRC attribute present. 
  1080.  
  1081.         * <ISINDEX> elements. 
  1082.  
  1083.         * <FORM> elements with `METHOD=GET'. 
  1084.  
  1085.    These markup constructs refer to head anchors by a URI, either    absolute or relative, or a fragment identifier, or both. 
  1086.  
  1087.    In the case of a relative URI, the absolute URI in the address of the    head anchor is the result of combining the relative URI with a base    absolute URI as in [RELURL]. The base document is taken from the    document's <BASE> element, if present; else, it is determined as in    [RELURL]. 
  1088.  
  1089. 7.1. Accessing Resources 
  1090.  
  1091.    Once the address of the head anchor is determined, the user agent may    obtain a representation of the resource. 
  1092.  
  1093.    For example, if the base URI is `http://host/x/y.html' and the    document contains: 
  1094.  
  1095.    <img src="../icons/abc.gif"> 
  1096.  
  1097.  
  1098.  
  1099. Berners-Lee & Connolly      Standards Track                    [Page 37] 
  1100.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1101.  
  1102.     then the user agent uses the URI `http://host/icons/abc.gif' to    access the resource, as in [URL].. 
  1103.  
  1104. 7.2. Activation of Hyperlinks 
  1105.  
  1106.    An HTML user agent allows the user to navigate the content of the    document and request activation of hyperlinks denoted by <A>    elements. HTML user agents should also allow activation of <LINK>    element hyperlinks. 
  1107.  
  1108.    To activate a link, the user agent obtains a representation of the    resource identified in the address of the head anchor. If the    representation is another HTML document, navigation may begin again    with this new document. 
  1109.  
  1110. 7.3. Simultaneous Presentation of Image Resources 
  1111.  
  1112.    An HTML user agent may activate hyperlinks indicated by <IMG> and    <INPUT> elements concurrently with processing the document; that is,    image hyperlinks may be processed without explicit request by the    user. Image resources should be embedded in the presentation at the    point of the tail anchor, that is the <IMG> or <INPUT> element. 
  1113.  
  1114.    <LINK> hyperlinks may also be processed without explicit user    request; for example, style sheet resources may be processed before    or during the processing of the document. 
  1115.  
  1116. 7.4. Fragment Identifiers 
  1117.  
  1118.    Any characters following a `#' character in a hypertext address    constitute a fragment identifier. In particular, an address of the    form `#fragment' refers to an anchor in the same document. 
  1119.  
  1120.    The meaning of fragment identifiers depends on the media type of the    representation of the anchor's resource. For `text/html'    representations, it refers to the <A> element with a NAME attribute    whose value is the same as the fragment identifier.  The matching is    case sensitive. The document should have exactly one such element.    The user agent should indicate the anchor element, for example by    scrolling to and/or highlighting the phrase. 
  1121.  
  1122.    For example, if the base URI is `http://host/x/y.html' and the user    activated the link denoted by the following markup: 
  1123.  
  1124.    <p> See: <a href="app1.html#bananas">appendix 1</a>    for more detail on bananas. 
  1125.  
  1126.  
  1127.  
  1128.  
  1129.  
  1130. Berners-Lee & Connolly      Standards Track                    [Page 38] 
  1131.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1132.  
  1133.     Then the user agent accesses the resource identified by    `http://host/x/app1.html'. Assuming the resource is represented using    the `text/html' media type, the user agent must locate the <A>    element whose NAME attribute is `bananas' and begin navigation there. 
  1134.  
  1135. 7.5. Queries and Indexes 
  1136.  
  1137.    The <ISINDEX> element represents a set of hyperlinks. The user can    choose from the set by providing keywords to the user agent.  The    user agent computes the head URI by appending `?' and the keywords to    the base URI. The keywords are escaped according to [URL] and joined    by `+'. For example, if a document contains: 
  1138.  
  1139.     <BASE HREF="http://host/index">     <ISINDEX> 
  1140.  
  1141.     and the user provides the keywords `apple' and `berry', then the     user agent must access the resource     `http://host/index?apple+berry'. 
  1142.  
  1143.     <FORM> elements with `METHOD=GET' also represent sets of     hyperlinks. See 8.2.2, "Query Forms: METHOD=GET" for details. 
  1144.  
  1145. 7.6. Image Maps 
  1146.  
  1147.    If the ISMAP attribute is present on an <IMG> element, the <IMG>    element must be contained in an <A> element with an HREF present.    This construct represents a set of hyperlinks. The user can choose    from the set by choosing a pixel of the image. The user agent    computes the head URI by appending `?' and the x and y coordinates of    the pixel to the URI given in the <A> element.  For example, if a    document contains: 
  1148.  
  1149.    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">    <head><title>ImageMap Example</title>    <BASE HREF="http://host/index"></head>    <body>    <p> Choose any of these icons:<br>    <a href="/cgi-bin/imagemap"><img ismap src="icons.gif"></a> 
  1150.  
  1151.    and the user chooses the upper-leftmost pixel, the chosen    hyperlink is the one with the URI    `http://host/cgi-bin/imagemap?0,0'. 
  1152.  
  1153.  
  1154.  
  1155.  
  1156.  
  1157.  
  1158.  
  1159.  Berners-Lee & Connolly      Standards Track                    [Page 39] 
  1160.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1161.  
  1162.  8. Forms 
  1163.  
  1164.    A form is a template for a form data set and an associated    method and action URI. A form data set is a sequence of    name/value pair fields. The names are specified on the NAME    attributes of form input elements, and the values are given    initial values by various forms of markup and edited by the    user. The resulting form data set is used to access an    information service as a function of the action and method. 
  1165.  
  1166.    Forms elements can be mixed in with document structuring    elements. For example, a <PRE> element may contain a <FORM>    element, or a <FORM> element may contain lists which contain    <INPUT> elements. This gives considerable flexibility in    designing the layout of forms. 
  1167.  
  1168.    Form processing is a level 2 feature. 
  1169.  
  1170. 8.1. Form Elements 
  1171.  
  1172. 8.1.1. Form: FORM 
  1173.  
  1174.    The <FORM> element contains a sequence of input elements, along    with document structuring elements. The attributes are: 
  1175.  
  1176.     ACTION             specifies the action URI for the form. The action URI of             a form defaults to the base URI of the document (see 7,             "Hyperlinks"). 
  1177.  
  1178.     METHOD             selects a method of accessing the action URI. The set of             applicable methods is a function of the scheme of the             action URI of the form. See 8.2.2, "Query Forms:             METHOD=GET" and 8.2.3, "Forms with Side-Effects:             METHOD=POST". 
  1179.  
  1180.     ENCTYPE             specifies the media type used to encode the name/value             pairs for transport, in case the protocol does not             itself impose a format. See 8.2.1, "The form-urlencoded             Media Type". 
  1181.  
  1182. 8.1.2. Input Field: INPUT 
  1183.  
  1184.    The <INPUT> element represents a field for user input. The TYPE    attribute discriminates between several variations of fields. 
  1185.  
  1186.  
  1187.  
  1188.  Berners-Lee & Connolly      Standards Track                    [Page 40] 
  1189.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1190.  
  1191.     The <INPUT> element has a number of attributes. The set of applicable    attributes depends on the value of the TYPE attribute. 
  1192.  
  1193. 8.1.2.1. Text Field: INPUT TYPE=TEXT 
  1194.  
  1195.    The default value of the TYPE attribute is `TEXT', indicating a    single line text entry field. (Use the <TEXTAREA> element for multi-    line text fields.) 
  1196.  
  1197.    Required attributes are: 
  1198.  
  1199.     NAME             name for the form field corresponding to this element. 
  1200.  
  1201.     The optional attributes are: 
  1202.  
  1203.     MAXLENGTH             constrains the number of characters that can be entered             into a text input field. If the value of MAXLENGTH is             greater the the value of the SIZE attribute, the field             should scroll appropriately. The default number of             characters is unlimited. 
  1204.  
  1205.     SIZE             specifies the amount of display space allocated to this             input field according to its type. The default depends             on the user agent. 
  1206.  
  1207.     VALUE             The initial value of the field. 
  1208.  
  1209.     For example: 
  1210.  
  1211. <p>Street Address: <input name=street><br> Postal City code: <input name=city size=16 maxlength=16><br> Zip Code: <input name=zip size=10 maxlength=10 value="99999-9999"><br> 
  1212.  
  1213. 8.1.2.2. Password Field: INPUT TYPE=PASSWORD 
  1214.  
  1215.    An <INPUT> element with `TYPE=PASSWORD' is a text field as above,    except that the value is obscured as it is entered. (see also: 10,    "Security Considerations"). 
  1216.  
  1217.    For example: 
  1218.  
  1219. <p>Name: <input name=login> Password: <input type=password name=passwd> 
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225. Berners-Lee & Connolly      Standards Track                    [Page 41] 
  1226.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1227.  
  1228.  8.1.2.3. Check Box: INPUT TYPE=CHECKBOX 
  1229.  
  1230.    An <INPUT> element with `TYPE=CHECKBOX' represents a boolean choice.    A set of such elements with the same name represents an n-of-many    choice field. Required attributes are: 
  1231.  
  1232.     NAME             symbolic name for the form field corresponding to this             element or group of elements. 
  1233.  
  1234.     VALUE             The portion of the value of the field contributed by             this element. 
  1235.  
  1236.     Optional attributes are: 
  1237.  
  1238.     CHECKED             indicates that the initial state is on. 
  1239.  
  1240.     For example: 
  1241.  
  1242.   <p>What flavors do you like?   <input type=checkbox name=flavor value=vanilla>Vanilla<br>   <input type=checkbox name=flavor value=strawberry>Strawberry<br>   <input type=checkbox name=flavor value=chocolate checked>Chocolate<br> 
  1243.  
  1244. 8.1.2.4. Radio Button: INPUT TYPE=RADIO 
  1245.  
  1246.    An <INPUT> element with `TYPE=RADIO' represents a boolean choice. A    set of such elements with the same name represents a 1-of-many choice    field. The NAME and VALUE attributes are required as for check boxes.    Optional attributes are: 
  1247.  
  1248.     CHECKED             indicates that the initial state is on.    At all times, exactly one of the radio buttons in a set is checked.    If none of the <INPUT> elements of a set of radio buttons specifies    `CHECKED', then the user agent must check the first radio button of    the set initially. 
  1249.  
  1250.    For example: 
  1251.  
  1252.     <p>Which is your favorite?     <input type=radio name=flavor value=vanilla>Vanilla<br>     <input type=radio name=flavor value=strawberry>Strawberry<br>     <input type=radio name=flavor value=chocolate>Chocolate<br> 
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258. Berners-Lee & Connolly      Standards Track                    [Page 42] 
  1259.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1260.  
  1261.  8.1.2.5. Image Pixel: INPUT TYPE=IMAGE 
  1262.  
  1263.    An <INPUT> element with `TYPE=IMAGE' specifies an image resource to    display, and allows input of two form fields: the x and y coordinate    of a pixel chosen from the image. The names of the fields are the    name of the field with `.x' and `.y' appended.  `TYPE=IMAGE' implies    `TYPE=SUBMIT' processing; that is, when a pixel is chosen, the form    as a whole is submitted. 
  1264.  
  1265.    The NAME attribute is required as for other input fields. The SRC    attribute is required and the ALIGN is optional as for the <IMG>    element (see 5.10, "Image: IMG"). 
  1266.  
  1267.    For example: 
  1268.  
  1269.     <p>Choose a point on the map:     <input type=image name=point src="map.gif"> 
  1270.  
  1271. 8.1.2.6. Hidden Field: INPUT TYPE=HIDDEN 
  1272.  
  1273.    An <INPUT> element with `TYPE=HIDDEN' represents a hidden field.The    user does not interact with this field; instead, the VALUE attribute    specifies the value of the field. The NAME and VALUE attributes are    required. 
  1274.  
  1275.    For example: 
  1276.  
  1277.    <input type=hidden name=context value="l2k3j4l2k3j4l2k3j4lk23"> 
  1278.  
  1279. 8.1.2.7. Submit Button: INPUT TYPE=SUBMIT 
  1280.  
  1281.    An <INPUT> element with `TYPE=SUBMIT' represents an input option,    typically a button, that instructs the user agent to submit the form.    Optional attributes are: 
  1282.  
  1283.     NAME             indicates that this element contributes a form field             whose value is given by the VALUE attribute. If the NAME             attribute is not present, this element does not             contribute a form field. 
  1284.  
  1285.     VALUE             indicates a label for the input (button). 
  1286.  
  1287.     You may submit this request internally:     <input type=submit name=recipient value=internal><br>     or to the external world:     <input type=submit name=recipient value=world> 
  1288.  
  1289.  
  1290.  
  1291. Berners-Lee & Connolly      Standards Track                    [Page 43] 
  1292.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1293.  
  1294.  8.1.2.8. Reset Button: INPUT TYPE=RESET 
  1295.  
  1296.    An <INPUT> element with `TYPE=RESET' represents an input option,    typically a button, that instructs the user agent to reset the form's    fields to their initial states. The VALUE attribute, if present,    indicates a label for the input (button). 
  1297.  
  1298.    When you are finished, you may submit this request:    <input type=submit><br>    You may clear the form and start over at any time: <input type=reset> 
  1299.  
  1300. 8.1.3. Selection: SELECT 
  1301.  
  1302.    The <SELECT> element constrains the form field to an enumerated list    of values. The values are given in <OPTION> elements.  Attributes    are: 
  1303.  
  1304.     MULTIPLE             indicates that more than one option may be included in             the value. 
  1305.  
  1306.     NAME             specifies the name of the form field. 
  1307.  
  1308.     SIZE             specifies the number of visible items. Select fields of             size one are typically pop-down menus, whereas select             fields with size greater than one are typically lists. 
  1309.  
  1310.     For example: 
  1311.  
  1312.     <SELECT NAME="flavor">     <OPTION>Vanilla     <OPTION>Strawberry     <OPTION value="RumRasin">Rum and Raisin     <OPTION selected>Peach and Orange     </SELECT> 
  1313.  
  1314.    The initial state has the first option selected, unless a SELECTED    attribute is present on any of the <OPTION> elements. 
  1315.  
  1316. 8.1.3.1. Option: OPTION 
  1317.  
  1318.    The Option element can only occur within a Select element. It    represents one choice, and has the following attributes: 
  1319.  
  1320.     SELECTED             Indicates that this option is initially selected. 
  1321.  
  1322.  
  1323.  
  1324. Berners-Lee & Connolly      Standards Track                    [Page 44] 
  1325.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1326.  
  1327.      VALUE             indicates the value to be returned if this option is             chosen. The field value defaults to the content of the             <OPTION> element. 
  1328.  
  1329.    The content of the <OPTION> element is presented to the user to    represent the option. It is used as a returned value if the VALUE    attribute is not present. 
  1330.  
  1331. 8.1.4. Text Area: TEXTAREA 
  1332.  
  1333.    The <TEXTAREA> element represents a multi-line text field.    Attributes are: 
  1334.  
  1335.     COLS             the number of visible columns to display for the text             area, in characters. 
  1336.  
  1337.     NAME             Specifies the name of the form field. 
  1338.  
  1339.     ROWS             The number of visible rows to display for the text area,             in characters. 
  1340.  
  1341.     For example: 
  1342.  
  1343.     <TEXTAREA NAME="address" ROWS=6 COLS=64>     HaL Computer Systems     1315 Dell Avenue     Campbell, California 95008     </TEXTAREA> 
  1344.  
  1345.    The content of the <TEXTAREA> element is the field's initial value. 
  1346.  
  1347.    Typically, the ROWS and COLS attributes determine the visible    dimension of the field in characters. The field is typically rendered    in a fixed-width font. HTML user agents should allow text to extend    beyond these limits by scrolling as needed. 
  1348.  
  1349. 8.2. Form Submission 
  1350.  
  1351.    An HTML user agent begins processing a form by presenting the    document with the fields in their initial state. The user is allowed    to modify the fields, constrained by the field type etc.  When the    user indicates that the form should be submitted (using a submit    button or image input), the form data set is processed according to    its method, action URI and enctype. 
  1352.  
  1353.  
  1354.  
  1355. Berners-Lee & Connolly      Standards Track                    [Page 45] 
  1356.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1357.  
  1358.     When there is only one single-line text input field in a form, the    user agent should accept Enter in that field as a request to submit    the form. 
  1359.  
  1360. 8.2.1. The form-urlencoded Media Type 
  1361.  
  1362.    The default encoding for all forms is `application/x-www-form-    urlencoded'. A form data set is represented in this media type as    follows: 
  1363.  
  1364.         1. The form field names and values are escaped: space         characters are replaced by `+', and then reserved characters         are escaped as per [URL]; that is, non-alphanumeric         characters are replaced by `%HH', a percent sign and two         hexadecimal digits representing the ASCII code of the         character. Line breaks, as in multi-line text field values,         are represented as CR LF pairs, i.e. `%0D%0A'. 
  1365.  
  1366.         2. The fields are listed in the order they appear in the         document with the name separated from the value by `=' and         the pairs separated from each other by `&'. Fields with null         values may be omitted. In particular, unselected radio         buttons and checkboxes should not appear in the encoded         data, but hidden fields with VALUE attributes present         should. 
  1367.  
  1368.             NOTE - The URI from a query form submission can be             used in a normal anchor style hyperlink.             Unfortunately, the use of the `&' character to             separate form fields interacts with its use in SGML             attribute values as an entity reference delimiter.             For example, the URI `http://host/?x=1&y=2' must be             written `<a href="http://host/?x=1&y=2"' or `<a             href="http://host/?x=1&y=2">'. 
  1369.  
  1370.             HTTP server implementors, and in particular, CGI             implementors are encouraged to support the use of             `;' in place of `&' to save users the trouble of             escaping `&' characters this way. 
  1371.  
  1372. 8.2.2. Query Forms: METHOD=GET 
  1373.  
  1374.    If the processing of a form is idempotent (i.e. it has no lasting    observable effect on the state of the world), then the form method    should be `GET'. Many database searches have no visible side-effects    and make ideal applications of query forms. 
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380. Berners-Lee & Connolly      Standards Track                    [Page 46] 
  1381.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1382.  
  1383.     To process a form whose action URL is an HTTP URL and whose method is    `GET', the user agent starts with the action URI and appends a `?'    and the form data set, in `application/x-www-form-urlencoded' format    as above. The user agent then traverses the link to this URI just as    if it were an anchor (see 7.2, "Activation of Hyperlinks"). 
  1384.  
  1385.       NOTE - The URL encoding may result in very long URIs, which cause       some historical HTTP server implementations to exhibit defective       behavior. As a result, some HTML forms are written using       `METHOD=POST' even though the form submission has no side-effects. 
  1386.  
  1387. 8.2.3. Forms with Side-Effects: METHOD=POST 
  1388.  
  1389.    If the service associated with the processing of a form has side    effects (for example, modification of a database or subscription to a    service), the method should be `POST'.     To process a form whose action URL is an HTTP URL and whose method is    `POST', the user agent conducts an HTTP POST transaction using the    action URI, and a message body of type `application/x-www-form-    urlencoded' format as above. The user agent should display the    response from the HTTP POST interaction just as it would display the    response from an HTTP GET above. 
  1390.  
  1391. 8.2.4. Example Form Submission: Questionnaire Form 
  1392.  
  1393.    Consider the following document: 
  1394.  
  1395.     <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">     <title>Sample of HTML Form Submission</title>     <H1>Sample Questionnaire</H1>     <P>Please fill out this questionnaire:     <FORM METHOD="POST" ACTION="http://www.w3.org/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> 
  1396.  
  1397.  
  1398.  
  1399.  Berners-Lee & Connolly      Standards Track                    [Page 47] 
  1400.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1401.  
  1402.      The initial state of the form data set is: 
  1403.  
  1404.     name             "" 
  1405.  
  1406.     gender             "male" 
  1407.  
  1408.     family             "" 
  1409.  
  1410.     other             "" 
  1411.  
  1412.     nickname             "" 
  1413.  
  1414.     Note that the radio input has an initial value, while the     checkbox has none. 
  1415.  
  1416.     The user might edit the fields and request that the form be     submitted. At that point, suppose the values are: 
  1417.  
  1418.     name             "John Doe" 
  1419.  
  1420.     gender             "male" 
  1421.  
  1422.     family             "5" 
  1423.  
  1424.     city             "kent" 
  1425.  
  1426.     city             "miami" 
  1427.  
  1428.     other             "abc\ndefk" 
  1429.  
  1430.     nickname             "J&D" 
  1431.  
  1432.    The user agent then conducts an HTTP POST transaction using the URI    `http://www.w3.org/sample'. The message body would be (ignore the    line break): 
  1433.  
  1434.  
  1435.  
  1436.  Berners-Lee & Connolly      Standards Track                    [Page 48] 
  1437.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1438.  
  1439.     name=John+Doe&gender=male&family=5&city=kent&city=miami&    other=abc%0D%0Adef&nickname=J%26D 
  1440.  
  1441. 9. HTML Public Text 
  1442.  
  1443. 9.1. HTML DTD 
  1444.  
  1445.    This is the Document Type Definition for the HyperText Markup    Language, level 2. 
  1446.  
  1447. <!--    html.dtd 
  1448.  
  1449.         Document Type Definition for the HyperText Markup Language                  (HTML DTD) 
  1450.  
  1451.         $Id: html.dtd,v 1.30 1995/09/21 23:30:19 connolly Exp $ 
  1452.  
  1453.         Author: Daniel W. Connolly <connolly@w3.org>         See Also: html.decl, html-1.dtd           http://www.w3.org/hypertext/WWW/MarkUp/MarkUp.html --> 
  1454.  
  1455. <!ENTITY % HTML.Version         "-//IETF//DTD HTML 2.0//EN" 
  1456.  
  1457.         -- Typical usage: 
  1458.  
  1459.             <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">             <html>             ...             </html>         --         > 
  1460.  
  1461.  <!--============ Feature Test Entities ========================--> 
  1462.  
  1463. <!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.         --> 
  1464.  
  1465. <![ %HTML.Recommended [         <!ENTITY % HTML.Deprecated "IGNORE"> 
  1466.  
  1467.  
  1468.  
  1469. Berners-Lee & Connolly      Standards Track                    [Page 49] 
  1470.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1471.  
  1472.  ]]> 
  1473.  
  1474. <!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 and implemented inconsistently,            and their use is deprecated. This feature test entity            enables a document type definition that eliminates            these features.         --> 
  1475.  
  1476. <!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.         --> 
  1477.  
  1478. <!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         --> 
  1479.  
  1480. <!--============== Imported Names ==============================--> 
  1481.  
  1482. <!ENTITY % Content-Type "CDATA"         -- meaning an internet media type            (aka MIME content type, as per RFC1521)         --> 
  1483.  
  1484. <!ENTITY % HTTP-Method "GET | POST"         -- as per HTTP specification, in progress         --> 
  1485.  
  1486. <!--========= DTD "Macros" =====================--> 
  1487.  
  1488. <!ENTITY % heading "H1|H2|H3|H4|H5|H6"> 
  1489.  
  1490. <!ENTITY % list " UL | OL | DIR | MENU " > 
  1491.  
  1492.  <!--======= Character mnemonic entities =================--> 
  1493.  
  1494. <!ENTITY % ISOlat1 PUBLIC   "ISO 8879-1986//ENTITIES Added Latin 1//EN//HTML"> %ISOlat1; 
  1495.  
  1496. <!ENTITY amp CDATA "&"     -- ampersand          --> 
  1497.  
  1498.  
  1499.  
  1500. Berners-Lee & Connolly      Standards Track                    [Page 50] 
  1501.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1502.  
  1503.  <!ENTITY gt CDATA ">"      -- greater than       --> <!ENTITY lt CDATA "<"      -- less than          --> <!ENTITY quot CDATA """    -- double quote       --> 
  1504.  
  1505.  <!--========= SGML Document Access (SDA) Parameter Entities =====--> 
  1506.  
  1507. <!-- HTML 2.0 contains SGML Document Access (SDA) fixed attributes in support of easy transformation to the International Committee for Accessible Document Design (ICADD) DTD          "-//EC-USA-CDA/ICADD//DTD ICADD22//EN". ICADD applications are designed to support usable access to structured information by print-impaired individuals through Braille, large print and voice synthesis.  For more information on SDA & ICADD:         - ISO 12083:1993, Annex A.8, Facilities for Braille,           large print and computer voice         - ICADD ListServ           <ICADD%ASUACAD.BITNET@ARIZVM1.ccit.arizona.edu>         - Usenet news group bit.listserv.easi         - Recording for the Blind, +1 800 221 4792 --> 
  1508.  
  1509. <!ENTITY % SDAFORM  "SDAFORM  CDATA  #FIXED"           -- one to one mapping        --> <!ENTITY % SDARULE  "SDARULE  CDATA  #FIXED"           -- context-sensitive mapping --> <!ENTITY % SDAPREF  "SDAPREF  CDATA  #FIXED"           -- generated text prefix     --> <!ENTITY % SDASUFF  "SDASUFF  CDATA  #FIXED"           -- generated text suffix     --> <!ENTITY % SDASUSP  "SDASUSP  NAME   #FIXED"           -- suspend transform process --> 
  1510.  
  1511.  <!--========== Text Markup =====================--> 
  1512.  
  1513. <![ %HTML.Highlighting [ 
  1514.  
  1515. <!ENTITY % font " TT | B | I "> 
  1516.  
  1517. <!ENTITY % phrase "EM | STRONG | CODE | SAMP | KBD | VAR | CITE "> 
  1518.  
  1519. <!ENTITY % text "#PCDATA | A | IMG | BR | %phrase | %font"> 
  1520.  
  1521. <!ELEMENT (%font;|%phrase) - - (%text)*> <!ATTLIST ( TT | CODE | SAMP | KBD | VAR )         %SDAFORM; "Lit" 
  1522.  
  1523.  
  1524.  
  1525. Berners-Lee & Connolly      Standards Track                    [Page 51] 
  1526.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1527.  
  1528.          > <!ATTLIST ( B | STRONG )         %SDAFORM; "B"         > <!ATTLIST ( I | EM | CITE )         %SDAFORM; "It"         > 
  1529.  
  1530. <!-- <TT>       Typewriter text                         --> <!-- <B>        Bold text                               --> <!-- <I>        Italic text                             --> 
  1531.  
  1532. <!-- <EM>       Emphasized phrase                       --> <!-- <STRONG>   Strong emphasis                         --> <!-- <CODE>     Source code phrase                      --> <!-- <SAMP>     Sample text or characters               --> <!-- <KBD>      Keyboard phrase, e.g. user input        --> <!-- <VAR>      Variable phrase or substitutable        --> <!-- <CITE>     Name or title of cited work             --> 
  1533.  
  1534. <!ENTITY % pre.content "#PCDATA | A | HR | BR | %font | %phrase"> 
  1535.  
  1536. ]]> 
  1537.  
  1538. <!ENTITY % text "#PCDATA | A | IMG | BR"> 
  1539.  
  1540. <!ELEMENT BR    - O EMPTY> <!ATTLIST BR         %SDAPREF; "&#RE;"         > 
  1541.  
  1542. <!-- <BR>       Line break      --> 
  1543.  
  1544.  <!--========= Link Markup ======================--> 
  1545.  
  1546. <!ENTITY % linkType "NAMES"> 
  1547.  
  1548. <!ENTITY % linkExtraAttributes         "REL %linkType #IMPLIED         REV %linkType #IMPLIED         URN CDATA #IMPLIED         TITLE CDATA #IMPLIED         METHODS NAMES #IMPLIED         "> 
  1549.  
  1550. <![ %HTML.Recommended [         <!ENTITY % A.content   "(%text)*" 
  1551.  
  1552.  
  1553.  
  1554. Berners-Lee & Connolly      Standards Track                    [Page 52] 
  1555.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1556.  
  1557.          -- <H1><a name="xxx">Heading</a></H1>                 is preferred to            <a name="xxx"><H1>Heading</H1></a>         --> ]]> 
  1558.  
  1559. <!ENTITY % A.content   "(%heading|%text)*"> 
  1560.  
  1561. <!ELEMENT A     - - %A.content -(A)> <!ATTLIST A         HREF CDATA #IMPLIED         NAME CDATA #IMPLIED         %linkExtraAttributes;         %SDAPREF; "<Anchor: #AttList>"         > <!-- <A>                Anchor; source/destination of link      --> <!-- <A NAME="...">     Name of this anchor                     --> <!-- <A HREF="...">     Address of link destination             --> <!-- <A URN="...">      Permanent address of destination        --> <!-- <A REL=...>        Relationship to destination             --> <!-- <A REV=...>        Relationship of destination to this     --> <!-- <A TITLE="...">    Title of destination (advisory)         --> <!-- <A METHODS="...">  Operations on destination (advisory)    --> 
  1562.  
  1563.  <!--========== Images ==========================--> 
  1564.  
  1565. <!ELEMENT IMG    - O EMPTY> <!ATTLIST IMG         SRC CDATA  #REQUIRED         ALT CDATA #IMPLIED         ALIGN (top|middle|bottom) #IMPLIED         ISMAP (ISMAP) #IMPLIED         %SDAPREF; "<Fig><?SDATrans Img: #AttList>#AttVal(Alt)</Fig>"         > 
  1566.  
  1567. <!-- <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                --> 
  1568.  
  1569. <!--========== Paragraphs=======================--> 
  1570.  
  1571. <!ELEMENT P     - O (%text)*> <!ATTLIST P         %SDAFORM; "Para"         > 
  1572.  
  1573.  
  1574.  
  1575. Berners-Lee & Connolly      Standards Track                    [Page 53] 
  1576.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1577.  
  1578.  <!-- <P>        Paragraph       --> 
  1579.  
  1580.  <!--========== Headings, Titles, Sections ===============--> 
  1581.  
  1582. <!ELEMENT HR    - O EMPTY> <!ATTLIST HR         %SDAPREF; "&#RE;&#RE;"         > 
  1583.  
  1584. <!-- <HR>       Horizontal rule --> 
  1585.  
  1586. <!ELEMENT ( %heading )  - -  (%text;)*> <!ATTLIST H1         %SDAFORM; "H1"         > <!ATTLIST H2         %SDAFORM; "H2"         > <!ATTLIST H3         %SDAFORM; "H3"         > <!ATTLIST H4         %SDAFORM; "H4"         > <!ATTLIST H5         %SDAFORM; "H5"         > <!ATTLIST H6         %SDAFORM; "H6"         > 
  1587.  
  1588. <!-- <H1>       Heading, level 1 --> <!-- <H2>       Heading, level 2 --> <!-- <H3>       Heading, level 3 --> <!-- <H4>       Heading, level 4 --> <!-- <H5>       Heading, level 5 --> <!-- <H6>       Heading, level 6 --> 
  1589.  
  1590.  <!--========== Text Flows ======================--> 
  1591.  
  1592. <![ %HTML.Forms [         <!ENTITY % block.forms "BLOCKQUOTE | FORM | ISINDEX"> ]]> 
  1593.  
  1594. <!ENTITY % block.forms "BLOCKQUOTE"> 
  1595.  
  1596.  
  1597.  
  1598.  Berners-Lee & Connolly      Standards Track                    [Page 54] 
  1599.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1600.  
  1601.  <![ %HTML.Deprecated [         <!ENTITY % preformatted "PRE | XMP | LISTING"> ]]> 
  1602.  
  1603. <!ENTITY % preformatted "PRE"> 
  1604.  
  1605. <!ENTITY % block "P | %list | DL         | %preformatted         | %block.forms"> 
  1606.  
  1607. <!ENTITY % flow "(%text|%block)*"> 
  1608.  
  1609. <!ENTITY % pre.content "#PCDATA | A | HR | BR"> <!ELEMENT PRE - - (%pre.content)*> <!ATTLIST PRE         WIDTH NUMBER #implied         %SDAFORM; "Lit"         > 
  1610.  
  1611. <!-- <PRE>              Preformatted text               --> <!-- <PRE WIDTH=...>    Maximum characters per line     --> 
  1612.  
  1613. <![ %HTML.Deprecated [ 
  1614.  
  1615. <!ENTITY % literal "CDATA"         -- historical, non-conforming parsing mode where            the only markup signal is the end tag            in full         --> 
  1616.  
  1617. <!ELEMENT (XMP|LISTING) - -  %literal> <!ATTLIST XMP         %SDAFORM; "Lit"         %SDAPREF; "Example:&#RE;"         > <!ATTLIST LISTING         %SDAFORM; "Lit"         %SDAPREF; "Listing:&#RE;"         > 
  1618.  
  1619. <!-- <XMP>              Example section         --> <!-- <LISTING>          Computer listing        --> 
  1620.  
  1621. <!ELEMENT PLAINTEXT - O %literal> <!-- <PLAINTEXT>        Plain text passage      --> 
  1622.  
  1623. <!ATTLIST PLAINTEXT         %SDAFORM; "Lit" 
  1624.  
  1625.  
  1626.  
  1627. Berners-Lee & Connolly      Standards Track                    [Page 55] 
  1628.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1629.  
  1630.          > ]]> 
  1631.  
  1632. <!--========== Lists ==================--> 
  1633.  
  1634. <!ELEMENT DL    - -  (DT | DD)+> <!ATTLIST DL         COMPACT (COMPACT) #IMPLIED         %SDAFORM; "List"         %SDAPREF; "Definition List:"         > 
  1635.  
  1636. <!ELEMENT DT    - O (%text)*> <!ATTLIST DT         %SDAFORM; "Term"         > 
  1637.  
  1638. <!ELEMENT DD    - O %flow> <!ATTLIST DD         %SDAFORM; "LItem"         > 
  1639.  
  1640. <!-- <DL>               Definition list, or glossary    --> <!-- <DL COMPACT>       Compact style list              --> <!-- <DT>               Term in definition list         --> <!-- <DD>               Definition of term              --> 
  1641.  
  1642. <!ELEMENT (OL|UL) - -  (LI)+> <!ATTLIST OL         COMPACT (COMPACT) #IMPLIED         %SDAFORM; "List"         > <!ATTLIST UL         COMPACT (COMPACT) #IMPLIED         %SDAFORM; "List"         > <!-- <UL>               Unordered list                  --> <!-- <UL COMPACT>       Compact list style              --> <!-- <OL>               Ordered, or numbered list       --> <!-- <OL COMPACT>       Compact list style              --> 
  1643.  
  1644.  <!ELEMENT (DIR|MENU) - -  (LI)+ -(%block)> <!ATTLIST DIR         COMPACT (COMPACT) #IMPLIED         %SDAFORM; "List"         %SDAPREF; "<LHead>Directory</LHead>"         > 
  1645.  
  1646.  
  1647.  
  1648. Berners-Lee & Connolly      Standards Track                    [Page 56] 
  1649.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1650.  
  1651.  <!ATTLIST MENU         COMPACT (COMPACT) #IMPLIED         %SDAFORM; "List"         %SDAPREF; "<LHead>Menu</LHead>"         > 
  1652.  
  1653. <!-- <DIR>              Directory list                  --> <!-- <DIR COMPACT>      Compact list style              --> <!-- <MENU>             Menu list                       --> <!-- <MENU COMPACT>     Compact list style              --> 
  1654.  
  1655. <!ELEMENT LI    - O %flow> <!ATTLIST LI         %SDAFORM; "LItem"         > 
  1656.  
  1657. <!-- <LI>               List item                       --> 
  1658.  
  1659. <!--========== Document Body ===================--> 
  1660.  
  1661. <![ %HTML.Recommended [         <!ENTITY % body.content "(%heading|%block|HR|ADDRESS|IMG)*"         -- <h1>Heading</h1>            <p>Text ...                 is preferred to            <h1>Heading</h1>            Text ...         --> ]]> 
  1662.  
  1663. <!ENTITY % body.content "(%heading | %text | %block |                                  HR | ADDRESS)*"> 
  1664.  
  1665. <!ELEMENT BODY O O  %body.content> 
  1666.  
  1667. <!-- <BODY>     Document body   --> 
  1668.  
  1669. <!ELEMENT BLOCKQUOTE - - %body.content> <!ATTLIST BLOCKQUOTE         %SDAFORM; "BQ"         > 
  1670.  
  1671. <!-- <BLOCKQUOTE>       Quoted passage  --> 
  1672.  
  1673. <!ELEMENT ADDRESS - - (%text|P)*> <!ATTLIST  ADDRESS         %SDAFORM; "Lit"         %SDAPREF; "Address:&#RE;" 
  1674.  
  1675.  
  1676.  
  1677. Berners-Lee & Connolly      Standards Track                    [Page 57] 
  1678.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1679.  
  1680.          > 
  1681.  
  1682. <!-- <ADDRESS>  Address, signature, or byline   --> 
  1683.  
  1684.  <!--======= Forms ====================--> 
  1685.  
  1686. <![ %HTML.Forms [ 
  1687.  
  1688. <!ELEMENT FORM - - %body.content -(FORM) +(INPUT|SELECT|TEXTAREA)> <!ATTLIST FORM         ACTION CDATA #IMPLIED         METHOD (%HTTP-Method) GET         ENCTYPE %Content-Type; "application/x-www-form-urlencoded"         %SDAPREF; "<Para>Form:</Para>"         %SDASUFF; "<Para>Form End.</Para>"         > 
  1689.  
  1690. <!-- <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     --> 
  1691.  
  1692. <!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 CDATA #IMPLIED         CHECKED (CHECKED) #IMPLIED         SIZE CDATA #IMPLIED         MAXLENGTH NUMBER #IMPLIED         ALIGN (top|middle|bottom) #IMPLIED         %SDAPREF; "Input: "         > 
  1693.  
  1694. <!-- <INPUT>                    Form input datum                --> <!-- <INPUT TYPE=...>           Type of input interaction       --> <!-- <INPUT NAME=...>           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                 --> 
  1695.  
  1696.  
  1697.  
  1698. Berners-Lee & Connolly      Standards Track                    [Page 58] 
  1699.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1700.  
  1701.  <!ELEMENT SELECT - - (OPTION+) -(INPUT|SELECT|TEXTAREA)> <!ATTLIST SELECT         NAME CDATA #REQUIRED         SIZE NUMBER #IMPLIED         MULTIPLE (MULTIPLE) #IMPLIED         %SDAFORM; "List"         %SDAPREF;         "<LHead>Select #AttVal(Multiple)</LHead>"         > 
  1702.  
  1703. <!-- <SELECT>                   Selection of option(s)          --> <!-- <SELECT NAME=...>          Name of form datum              --> <!-- <SELECT SIZE=...>          Options displayed at a time     --> <!-- <SELECT MULTIPLE>          Multiple selections allowed     --> 
  1704.  
  1705. <!ELEMENT OPTION - O (#PCDATA)*> <!ATTLIST OPTION         SELECTED (SELECTED) #IMPLIED         VALUE CDATA #IMPLIED         %SDAFORM; "LItem"         %SDAPREF;         "Option: #AttVal(Value) #AttVal(Selected)"         > 
  1706.  
  1707. <!-- <OPTION>                   A selection option              --> <!-- <OPTION SELECTED>          Initial state                   --> <!-- <OPTION VALUE="...">       Form datum value for this option--> 
  1708.  
  1709. <!ELEMENT TEXTAREA - - (#PCDATA)* -(INPUT|SELECT|TEXTAREA)> <!ATTLIST TEXTAREA         NAME CDATA #REQUIRED         ROWS NUMBER #REQUIRED         COLS NUMBER #REQUIRED         %SDAFORM; "Para"         %SDAPREF; "Input Text -- #AttVal(Name): "         > 
  1710.  
  1711. <!-- <TEXTAREA>                 An area for text input          --> <!-- <TEXTAREA NAME=...>        Name of form datum              --> <!-- <TEXTAREA ROWS=...>        Height of area                  --> <!-- <TEXTAREA COLS=...>        Width of area                   --> 
  1712.  
  1713. ]]> 
  1714.  
  1715.  <!--======= Document Head ======================--> 
  1716.  
  1717. <![ %HTML.Recommended [ 
  1718.  
  1719.  
  1720.  
  1721. Berners-Lee & Connolly      Standards Track                    [Page 59] 
  1722.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1723.  
  1724.          <!ENTITY % head.extra ""> ]]> <!ENTITY % head.extra "& NEXTID?"> 
  1725.  
  1726. <!ENTITY % head.content "TITLE & ISINDEX? & BASE? %head.extra"> 
  1727.  
  1728. <!ELEMENT HEAD O O  (%head.content) +(META|LINK)> 
  1729.  
  1730. <!-- <HEAD>     Document head   --> 
  1731.  
  1732. <!ELEMENT TITLE - -  (#PCDATA)*  -(META|LINK)> <!ATTLIST TITLE         %SDAFORM; "Ti"    > 
  1733.  
  1734. <!-- <TITLE>    Title of document --> 
  1735.  
  1736. <!ELEMENT LINK - O EMPTY> <!ATTLIST LINK         HREF CDATA #REQUIRED         %linkExtraAttributes;         %SDAPREF; "Linked to : #AttVal (TITLE) (URN) (HREF)>"    > 
  1737.  
  1738. <!-- <LINK>             Link from this document                 --> <!-- <LINK HREF="...">  Address of link destination             --> <!-- <LINK URN="...">   Lasting name of destination             --> <!-- <LINK REL=...>     Relationship to destination             --> <!-- <LINK REV=...>     Relationship of destination to this     --> <!-- <LINK TITLE="..."> Title of destination (advisory)         --> <!-- <LINK METHODS="..."> Operations allowed (advisory)         --> 
  1739.  
  1740. <!ELEMENT ISINDEX - O EMPTY> <!ATTLIST ISINDEX         %SDAPREF;    "<Para>[Document is indexed/searchable.]</Para>"> 
  1741.  
  1742. <!-- <ISINDEX>          Document is a searchable index          --> 
  1743.  
  1744. <!ELEMENT BASE - O EMPTY> <!ATTLIST BASE         HREF CDATA #REQUIRED     > 
  1745.  
  1746. <!-- <BASE>             Base context document                   --> <!-- <BASE HREF="...">  Address for this document               --> 
  1747.  
  1748. <!ELEMENT NEXTID - O EMPTY> <!ATTLIST NEXTID         N CDATA #REQUIRED     > 
  1749.  
  1750.  
  1751.  
  1752.  Berners-Lee & Connolly      Standards Track                    [Page 60] 
  1753.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1754.  
  1755.  <!-- <NEXTID>           Next ID to use for link name            --> <!-- <NEXTID N=...>     Next ID to use for link name            --> 
  1756.  
  1757. <!ELEMENT META - O EMPTY> <!ATTLIST META         HTTP-EQUIV  NAME    #IMPLIED         NAME        NAME    #IMPLIED         CONTENT     CDATA   #REQUIRED    > 
  1758.  
  1759. <!-- <META>                     Generic Meta-information        --> <!-- <META HTTP-EQUIV=...>      HTTP response header name       --> <!-- <META NAME=...>            Meta-information name           --> <!-- <META CONTENT="...">       Associated information          --> 
  1760.  
  1761. <!--======= Document Structure =================--> 
  1762.  
  1763. <![ %HTML.Deprecated [         <!ENTITY % html.content "HEAD, BODY, PLAINTEXT?"> ]]> <!ENTITY % html.content "HEAD, BODY"> 
  1764.  
  1765. <!ELEMENT HTML O O  (%html.content)> <!ENTITY % version.attr "VERSION CDATA #FIXED '%HTML.Version;'"> 
  1766.  
  1767. <!ATTLIST HTML         %version.attr;         %SDAFORM; "Book"         > 
  1768.  
  1769. <!-- <HTML>                     HTML Document   --> 
  1770.  
  1771. 9.2. Strict HTML DTD 
  1772.  
  1773.    This document type declaration refers to the HTML DTD with the    `HTML.Recommended' entity defined as `INCLUDE' rather than IGNORE;    that is, it refers to the more structurally rigid definition of HTML. 
  1774.  
  1775. <!--    html-s.dtd 
  1776.  
  1777.         Document Type Definition for the HyperText Markup Language         with strict validation (HTML Strict DTD). 
  1778.  
  1779.         $Id: html-s.dtd,v 1.3 1995/06/02 18:55:46 connolly Exp $ 
  1780.  
  1781.         Author: Daniel W. Connolly <connolly@w3.org>         See Also: http://www.w3.org/hypertext/WWW/MarkUp/MarkUp.html --> 
  1782.  
  1783.  
  1784.  
  1785.  Berners-Lee & Connolly      Standards Track                    [Page 61] 
  1786.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1787.  
  1788.  <!ENTITY % HTML.Version         "-//IETF//DTD HTML 2.0 Strict//EN" 
  1789.  
  1790.         -- Typical usage: 
  1791.  
  1792.             <!DOCTYPE HTML PUBLIC                 "-//IETF//DTD HTML Strict//EN">             <html>             ...             </html>         --         > 
  1793.  
  1794. <!-- Feature Test Entities --> <!ENTITY % HTML.Recommended "INCLUDE"> 
  1795.  
  1796. <!ENTITY % html PUBLIC "-//IETF//DTD HTML 2.0//EN"> %html; 
  1797.  
  1798. 9.3. Level 1 HTML DTD 
  1799.  
  1800.    This document type declaration refers to the HTML DTD with the    `HTML.Forms' entity defined as `IGNORE' rather than `INCLUDE'.    Documents which contain <FORM> elements do not conform to this DTD,    and must use the level 2 DTD. 
  1801.  
  1802. <!--    html-1.dtd 
  1803.  
  1804.         Document Type Definition for the HyperText Markup Language         with Level 1 Extensions (HTML Level 1 DTD). 
  1805.  
  1806.         $Id: html-1.dtd,v 1.2 1995/03/29 18:53:10 connolly Exp $ 
  1807.  
  1808.         Author: Daniel W. Connolly <connolly@w3.org>         See Also: http://info.cern.ch/hypertext/WWW/MarkUp/MarkUp.html 
  1809.  
  1810. --> 
  1811.  
  1812. <!ENTITY % HTML.Version         "-//IETF//DTD HTML 2.0 Level 1//EN" 
  1813.  
  1814.         -- Typical usage: 
  1815.  
  1816.             <!DOCTYPE HTML PUBLIC                 "-//IETF//DTD HTML Level 1//EN">             <html>             ...             </html> 
  1817.  
  1818.  
  1819.  
  1820. Berners-Lee & Connolly      Standards Track                    [Page 62] 
  1821.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1822.  
  1823.          --         > 
  1824.  
  1825. <!-- Feature Test Entities --> <!ENTITY % HTML.Forms "IGNORE"> 
  1826.  
  1827. <!ENTITY % html PUBLIC "-//IETF//DTD HTML 2.0//EN"> %html; 
  1828.  
  1829. 9.4. Strict Level 1 HTML DTD 
  1830.  
  1831.    This document type declaration refers to the level 1 HTML DTD with    the `HTML.Recommended' entity defined as `INCLUDE' rather than    IGNORE; that is, it refers to the more structurally rigid definition    of HTML. 
  1832.  
  1833. <!--    html-1s.dtd 
  1834.  
  1835.         Document Type Definition for the HyperText Markup Language         Struct Level 1 
  1836.  
  1837.         $Id: html-1s.dtd,v 1.3 1995/06/02 18:55:43 connolly Exp $ 
  1838.  
  1839.         Author: Daniel W. Connolly <connolly@w3.org>         See Also: http://www.w3.org/hypertext/WWW/MarkUp/MarkUp.html --> 
  1840.  
  1841. <!ENTITY % HTML.Version         "-//IETF//DTD HTML 2.0 Strict Level 1//EN" 
  1842.  
  1843.         -- Typical usage: 
  1844.  
  1845.             <!DOCTYPE HTML PUBLIC                 "-//IETF//DTD HTML Strict Level 1//EN">             <html>             ...             </html>         --         > 
  1846.  
  1847. <!-- Feature Test Entities --> 
  1848.  
  1849.  <!ENTITY % HTML.Recommended "INCLUDE"> 
  1850.  
  1851. <!ENTITY % html-1 PUBLIC "-//IETF//DTD HTML 2.0 Level 1//EN"> %html-1; 
  1852.  
  1853.  
  1854.  
  1855.  Berners-Lee & Connolly      Standards Track                    [Page 63] 
  1856.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1857.  
  1858.  9.5. SGML Declaration for HTML 
  1859.  
  1860.    This is the SGML Declaration for HyperText Markup Language. 
  1861.  
  1862. <!SGML  "ISO 8879:1986" --         SGML Declaration for HyperText Markup Language (HTML). 
  1863.  
  1864. -- 
  1865.  
  1866. 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" 
  1867.  
  1868.          DESCSET  128  32   UNUSED                   160  96    32 
  1869.  
  1870. CAPACITY        SGMLREF                 TOTALCAP        150000                 GRPCAP          150000                 ENTCAP          150000 
  1871.  
  1872. 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                   RE          13                   RS          10                   SPACE       32                   TAB SEPCHAR  9          NAMING   LCNMSTRT ""                   UCNMSTRT "" 
  1873.  
  1874.  
  1875.  
  1876. Berners-Lee & Connolly      Standards Track                    [Page 64] 
  1877.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1878.  
  1879.                    LCNMCHAR ".-"                   UCNMCHAR ".-"                   NAMECASE GENERAL YES                            ENTITY  NO          DELIM    GENERAL  SGMLREF                   SHORTREF SGMLREF          NAMES    SGMLREF          QUANTITY SGMLREF                   ATTSPLEN 2100                   LITLEN   1024                   NAMELEN  72    -- somewhat arbitrary; taken from                                 internet line length conventions --                   PILEN    1024                   TAGLVL   100                   TAGLEN   2100                   GRPGTCNT 150                   GRPCNT   64 
  1880.  
  1881. 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    "SDA"  -- conforming SGML Document Access application                     -- > <!--         $Id: html.decl,v 1.17 1995/06/08 14:59:32 connolly Exp $ 
  1882.  
  1883.         Author: Daniel W. Connolly <connolly@w3.org> 
  1884.  
  1885.         See also: http://www.w3.org/hypertext/WWW/MarkUp/MarkUp.html  --> 
  1886.  
  1887. 9.6. Sample SGML Open Entity Catalog for HTML 
  1888.  
  1889.    The SGML standard describes an "entity manager" as the portion or    component of an SGML system that maps SGML entities into the actual    storage model (e.g., the file system). The standard itself does not 
  1890.  
  1891.  
  1892.  
  1893. Berners-Lee & Connolly      Standards Track                    [Page 65] 
  1894.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1895.  
  1896.     define a particular mapping methodology or notation. 
  1897.  
  1898.    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. 
  1899.  
  1900.    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 identifier. For example, the following are possible    catalog entries: 
  1901.  
  1902.         -- catalog: SGML Open style entity catalog for HTML --         -- $Id: catalog,v 1.3 1995/09/21 23:30:23 connolly Exp $ -- 
  1903.  
  1904.         -- Ways to refer to Level 2: most general to most specific -- PUBLIC  "-//IETF//DTD HTML//EN"                 html.dtd PUBLIC  "-//IETF//DTD HTML 2.0//EN"             html.dtd PUBLIC  "-//IETF//DTD HTML Level 2//EN"         html.dtd PUBLIC  "-//IETF//DTD HTML 2.0 Level 2//EN"     html.dtd 
  1905.  
  1906.         -- 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 2.0 Level 1//EN"     html-1.dtd 
  1907.  
  1908.         -- Ways to refer to                  Strict Level 2: most general to most specific -- PUBLIC  "-//IETF//DTD HTML Strict//EN"                  html-s.dtd PUBLIC  "-//IETF//DTD HTML 2.0 Strict//EN"              html-s.dtd PUBLIC  "-//IETF//DTD HTML Strict Level 2//EN"          html-s.dtd PUBLIC  "-//IETF//DTD HTML 2.0 Strict Level 2//EN"      html-s.dtd 
  1909.  
  1910.         -- Ways to refer to                  Strict Level 1: most general to most specific -- PUBLIC  "-//IETF//DTD HTML Strict Level 1//EN"          html-1s.dtd PUBLIC  "-//IETF//DTD HTML 2.0 Strict Level 1//EN"      html-1s.dtd 
  1911.  
  1912.         -- ISO latin 1 entity set for HTML -- PUBLIC  "ISO 8879-1986//ENTITIES Added Latin 1//EN//HTML" ISOlat1\ sgml 
  1913.  
  1914. 9.7. Character Entity Sets 
  1915.  
  1916.    The HTML DTD defines the following entities. 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 
  1917.  
  1918.  
  1919.  
  1920. Berners-Lee & Connolly      Standards Track                    [Page 66] 
  1921.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1922.  
  1923.     the writer. 
  1924.  
  1925. 9.7.1. Numeric and Special Graphic Entity Set 
  1926.  
  1927.    The following table lists each of the characters included from the    Numeric and Special Graphic entity set, along with its name, syntax    for use, and description. This list is derived from `ISO Standard    8879:1986//ENTITIES Numeric and Special Graphic//EN'.  However, HTML    does not include for the entire entity set -- only the entities    listed below are included. 
  1928.  
  1929.     GLYPH   NAME    SYNTAX  DESCRIPTION     <       lt      <    Less than sign     >       gt      >    Greater than signn     &       amp     &   Ampersand     "       quot    "  Double quote sign 
  1930.  
  1931. 9.7.2. ISO Latin 1 Character Entity Set 
  1932.  
  1933.    The following public text lists each of the characters specified in    the Added Latin 1 entity set, along with its name, syntax for use,    and description. This list is derived from ISO Standard    8879:1986//ENTITIES Added Latin 1//EN. HTML includes the entire    entity set. 
  1934.  
  1935. <!-- (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, provided this notice is included in all copies. --> <!-- Character entity set. Typical invocation:      <!ENTITY % ISOlat1 PUBLIC        "ISO 8879-1986//ENTITIES Added Latin 1//EN//HTML">      %ISOlat1; --> <!--    Modified for use in HTML         $Id: ISOlat1.sgml,v 1.2 1994/11/30 23:45:12 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 --> 
  1936.  
  1937.  
  1938.  
  1939. Berners-Lee & Connolly      Standards Track                    [Page 67] 
  1940.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1941.  
  1942.  <!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 --> 
  1943.  
  1944.  
  1945.  
  1946. Berners-Lee & Connolly      Standards Track                    [Page 68] 
  1947.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1948.  
  1949.  <!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 --> 
  1950.  
  1951. 10. Security Considerations 
  1952.  
  1953.    Anchors, embedded images, and all other elements which contain URIs    as parameters may cause the URI to be dereferenced in response to    user input. In this case, the security considerations of [URL] apply. 
  1954.  
  1955.    The widely deployed methods for submitting forms requests -- HTTP and    SMTP -- provide little assurance of confidentiality.  Information    providers who request sensitive information via forms -- especially    by way of the `PASSWORD' type input field (see 8.1.2, "Input Field:    INPUT") -- should be aware and make their users aware of the lack of    confidentiality. 
  1956.  
  1957. 11. References 
  1958.  
  1959.     [URI]             Berners-Lee, T., "Universal Resource Identifiers in WWW:             A Unifying Syntax for the Expression of Names and             Addresses of Objects on the Network as used in the             World- Wide Web",  RFC 1630, CERN, June 1994.             <URL:ftp://ds.internic.net/rfc/rfc1630.txt> 
  1960.  
  1961.     [URL]             Berners-Lee, T., Masinter, L., and M. McCahill, "Uniform             Resource Locators (URL)", RFC 1738, CERN, Xerox PARC,             University of Minnesota, December 1994.             <URL:ftp://ds.internic.net/rfc/rfc1738.txt> 
  1962.  
  1963.     [HTTP]             Berners-Lee, T., Fielding, R., and H. Frystyk Nielsen,             "Hypertext Transfer Protocol - HTTP/1.0", Work in             Progress, MIT, UC Irvine, CERN, March 1995. 
  1964.  
  1965.     [MIME]             Borenstein, N., and N. Freed. "MIME (Multipurpose             Internet Mail Extensions) Part One: Mechanisms for             Specifying and Describing the Format of Internet Message             Bodies", RFC 1521, Bellcore, Innosoft, September 1993.             <URL:ftp://ds.internic.net/rfc/rfc1521.txt> 
  1966.  
  1967.     [RELURL]             Fielding, R., "Relative Uniform Resource Locators", RFC             1808, June 1995             <URL:ftp://ds.internic.net/rfc/rfc1808.txt> 
  1968.  
  1969.  
  1970.  
  1971. Berners-Lee & Connolly      Standards Track                    [Page 69] 
  1972.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  1973.  
  1974.      [GOLD90]             Goldfarb, C., "The SGML Handbook", Y. Rubinsky, Ed.,             Oxford University Press, 1990. 
  1975.  
  1976.     [DEXTER]             Frank Halasz and Mayer Schwartz, "The Dexter Hypertext             Reference Model", Communications of the ACM, pp.             30-39, vol. 37 no. 2, Feb 1994. 
  1977.  
  1978.     [IMEDIA]             Postel, J., "Media Type Registration Procedure",             RFC 1590, USC/Information Sciences Institute, March 1994.             <URL:ftp://ds.internic.net/rfc/rfc1590.txt> 
  1979.  
  1980.     [IANA]             Reynolds, J., and J. Postel, "Assigned Numbers", STD 2,             RFC 1700, USC/Information Sciecnes Institute, October             1994.  <URL:ftp://ds.internic.net/rfc/rfc1700.txt> 
  1981.  
  1982.     [SQ91]             SoftQuad. "The SGML Primer", 3rd ed., SoftQuad Inc.,             1991. <URL:http://www.sq.com/> 
  1983.  
  1984.     [ISO-646]             ISO/IEC 646:1991 Information technology -- ISO 7-bit             coded character set for information interchange             <URL:http://www.iso.ch/cate/d4777.html> 
  1985.  
  1986.     [ISO-10646]             ISO/IEC 10646-1:1993 Information technology -- Universal             Multiple-Octet Coded Character Set (UCS) -- Part 1:             Architecture and Basic Multilingual Plane             <URL:http://www.iso.ch/cate/d18741.html> 
  1987.  
  1988.     [ISO-8859-1]             ISO 8859. International Standard -- Information             Processing -- 8-bit Single-Byte Coded Graphic Character             Sets -- Part 1: Latin Alphabet No. 1, ISO 8859-1:1987.             <URL:http://www.iso.ch/cate/d16338.html> 
  1989.  
  1990.     [SGML]             ISO 8879. Information Processing -- Text and Office             Systems - Standard Generalized Markup Language (SGML),             1986. <URL:http://www.iso.ch/cate/d16387.html> 
  1991.  
  1992.  
  1993.  
  1994.  
  1995.  
  1996.  
  1997.  
  1998. Berners-Lee & Connolly      Standards Track                    [Page 70] 
  1999.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  2000.  
  2001.  12. Acknowledgments 
  2002.  
  2003.    The HTML document type was designed by Tim Berners-Lee at CERN as    part of the 1990 World Wide Web project. In 1992, Dan Connolly wrote    the HTML Document Type Definition (DTD) and a brief HTML    specification. 
  2004.  
  2005.    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. 
  2006.  
  2007.    Dan Connolly and Karen Olson Muldrow rewrote the HTML Specification    in 1994. The document was then edited by the HTML working group as a    whole, with updates being made by Eric Schieler, Mike Knezovich, and    Eric W. Sink at Spyglass, Inc.  Finally, Roy Fielding restructured    the entire draft into its current form. 
  2008.  
  2009.    Special thanks to the many active participants in the HTML working    group, too numerous to list individually, without whom there would be    no standards process and no standard. That this document approaches    its objective of carefully converging a description of current    practice and formalization of HTML's relationship to SGML is a    tribute to their effort. 
  2010.  
  2011. 12.1. Authors' Addresses 
  2012.  
  2013.    Tim Berners-Lee    Director, W3 Consortium    MIT Laboratory for Computer Science    545 Technology Square    Cambridge, MA 02139, U.S.A. 
  2014.  
  2015.    Phone: +1 (617) 253 9670    Fax: +1 (617) 258 8682    EMail: timbl@w3.org 
  2016.  
  2017.     Daniel W. Connolly    Research Technical Staff, W3 Consortium    MIT Laboratory for Computer Science    545 Technology Square    Cambridge, MA 02139, U.S.A. 
  2018.  
  2019.    Phone: +1 (617) 258 8682    EMail: connolly@w3.org    URI: http://www.w3.org/hypertext/WWW/People/Connolly/ 
  2020.  
  2021.  
  2022.  
  2023. Berners-Lee & Connolly      Standards Track                    [Page 71] 
  2024.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  2025.  
  2026.  13. The HTML Coded Character Set 
  2027.  
  2028.    This list details the code positions and characters of the HTML    document character set, specified in 9.5, "SGML Declaration for    HTML". This coded character set is based on [ISO-8859-1]. 
  2029.  
  2030.     REFERENCE       DESCRIPTION     --------------  -----------     � -    Unused                 Horizontal tab                 Line feed       -     Unused                 Carriage Return      -    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 sign     >           Greater than     ?           Question mark     @           Commercial at     A - Z   Letters A-Z     [           Left square bracket     \           Reverse solidus (backslash)     ]           Right square bracket     ^           Caret     _           Horizontal bar (underscore)     `           Acute accent     a - z  Letters a-z     {          Left curly brace     |          Vertical bar 
  2031.  
  2032.  
  2033.  
  2034. Berners-Lee & Connolly      Standards Track                    [Page 72] 
  2035.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  2036.  
  2037.      }          Right curly brace     ~          Tilde      - Ÿ Unused                Non-breaking Space     ¡          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, grave accent     Á          Capital A, acute accent     Â          Capital A, circumflex accent     Ã          Capital A, tilde     Ä          Capital A, dieresis or umlaut mark     Å          Capital A, ring     Æ          Capital AE dipthong (ligature)     Ç          Capital C, cedilla     È          Capital E, grave accent     É          Capital E, acute accent     Ê          Capital E, circumflex accent     Ë          Capital E, dieresis or umlaut mark     Ì          Capital I, grave accent 
  2038.  
  2039.  
  2040.  
  2041. Berners-Lee & Connolly      Standards Track                    [Page 73] 
  2042.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  2043.  
  2044.      Í          Capital I, acute accent     Î          Capital I, circumflex accent     Ï          Capital I, dieresis or umlaut mark     Ð          Capital Eth, Icelandic     Ñ          Capital N, tilde     Ò          Capital O, grave accent     Ó          Capital O, acute accent     Ô          Capital O, circumflex accent     Õ          Capital O, tilde     Ö          Capital O, dieresis or umlaut mark     ×          Multiply sign     Ø          Capital O, slash     Ù          Capital U, grave accent     Ú          Capital U, acute 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, grave accent     á          Small a, acute accent     â          Small a, circumflex accent     ã          Small a, tilde     ä          Small a, dieresis or umlaut mark     å          Small a, ring     æ          Small ae dipthong (ligature)     ç          Small c, cedilla     è          Small e, grave accent     é          Small e, acute accent     ê          Small e, circumflex accent     ë          Small e, dieresis or umlaut mark     ì          Small i, grave accent     í          Small i, acute accent     î          Small i, circumflex accent     ï          Small i, dieresis or umlaut mark     ð          Small eth, Icelandic     ñ          Small n, tilde     ò          Small o, grave accent     ó          Small o, acute accent     ô          Small o, circumflex accent     õ          Small o, tilde     ö          Small o, dieresis or umlaut mark     ÷          Division sign     ø          Small o, slash     ù          Small u, grave accent     ú          Small u, acute accent     û          Small u, circumflex accent     ü          Small u, dieresis or umlaut mark 
  2045.  
  2046.  
  2047.  
  2048. Berners-Lee & Connolly      Standards Track                    [Page 74] 
  2049.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  2050.  
  2051.      ý          Small y, acute accent     þ          Small thorn, Icelandic     ÿ          Small y, dieresis or umlaut mark 
  2052.  
  2053. 14. Proposed Entities 
  2054.  
  2055.    The HTML DTD references the "Added Latin 1" entity set, which only    supplies named entities for a subset of the non-ASCII characters in    [ISO-8859-1], namely the accented characters. The following entities    should be supported so that all ISO 8859-1 characters may only be    referenced symbolically. The names for these entities are taken from    the appendixes of [SGML]. 
  2056.  
  2057.     <!ENTITY nbsp   CDATA " " -- no-break space -->     <!ENTITY iexcl  CDATA "¡" -- inverted exclamation mark -->     <!ENTITY cent   CDATA "¢" -- cent sign -->     <!ENTITY pound  CDATA "£" -- pound sterling sign -->     <!ENTITY curren CDATA "¤" -- general currency sign -->     <!ENTITY yen    CDATA "¥" -- yen sign -->     <!ENTITY brvbar CDATA "¦" -- broken (vertical) bar -->     <!ENTITY sect   CDATA "§" -- section sign -->     <!ENTITY uml    CDATA "¨" -- umlaut (dieresis) -->     <!ENTITY copy   CDATA "©" -- copyright sign -->     <!ENTITY ordf   CDATA "ª" -- ordinal indicator, feminine -->     <!ENTITY laquo  CDATA "«" -- angle quotation mark, left -->     <!ENTITY not    CDATA "¬" -- not sign -->     <!ENTITY shy    CDATA "­" -- soft hyphen -->     <!ENTITY reg    CDATA "®" -- registered sign -->     <!ENTITY macr   CDATA "¯" -- macron -->     <!ENTITY deg    CDATA "°" -- degree sign -->     <!ENTITY plusmn CDATA "±" -- plus-or-minus sign -->     <!ENTITY sup2   CDATA "²" -- superscript two -->     <!ENTITY sup3   CDATA "³" -- superscript three -->     <!ENTITY acute  CDATA "´" -- acute accent -->     <!ENTITY micro  CDATA "µ" -- micro sign -->     <!ENTITY para   CDATA "¶" -- pilcrow (paragraph sign) -->     <!ENTITY middot CDATA "·" -- middle dot -->     <!ENTITY cedil  CDATA "¸" -- cedilla -->     <!ENTITY sup1   CDATA "¹" -- superscript one -->     <!ENTITY ordm   CDATA "º" -- ordinal indicator, masculine -->     <!ENTITY raquo  CDATA "»" -- angle quotation mark, right -->     <!ENTITY frac14 CDATA "¼" -- fraction one-quarter -->     <!ENTITY frac12 CDATA "½" -- fraction one-half -->     <!ENTITY frac34 CDATA "¾" -- fraction three-quarters -->     <!ENTITY iquest CDATA "¿" -- inverted question mark -->     <!ENTITY Agrave CDATA "À" -- capital A, grave accent -->     <!ENTITY Aacute CDATA "Á" -- capital A, acute accent -->     <!ENTITY Acirc  CDATA "Â" -- capital A, circumflex accent --> 
  2058.  
  2059.  
  2060.  
  2061. Berners-Lee & Connolly      Standards Track                    [Page 75] 
  2062.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  2063.  
  2064.      <!ENTITY Atilde CDATA "Ã" -- capital A, tilde -->     <!ENTITY Auml   CDATA "Ä" -- capital A, dieresis or umlaut mark -->     <!ENTITY Aring  CDATA "Å" -- capital A, ring -->     <!ENTITY AElig  CDATA "Æ" -- capital AE diphthong (ligature) -->     <!ENTITY Ccedil CDATA "Ç" -- capital C, cedilla -->     <!ENTITY Egrave CDATA "È" -- capital E, grave accent -->     <!ENTITY Eacute CDATA "É" -- capital E, acute accent -->     <!ENTITY Ecirc  CDATA "Ê" -- capital E, circumflex accent -->     <!ENTITY Euml   CDATA "Ë" -- capital E, dieresis or umlaut mark -->     <!ENTITY Igrave CDATA "Ì" -- capital I, grave accent -->     <!ENTITY Iacute CDATA "Í" -- capital I, acute accent -->     <!ENTITY Icirc  CDATA "Î" -- capital I, circumflex accent -->     <!ENTITY Iuml   CDATA "Ï" -- capital I, dieresis or umlaut mark -->     <!ENTITY ETH    CDATA "Ð" -- capital Eth, Icelandic -->     <!ENTITY Ntilde CDATA "Ñ" -- capital N, tilde -->     <!ENTITY Ograve CDATA "Ò" -- capital O, grave accent -->     <!ENTITY Oacute CDATA "Ó" -- capital O, acute accent -->     <!ENTITY Ocirc  CDATA "Ô" -- capital O, circumflex accent -->     <!ENTITY Otilde CDATA "Õ" -- capital O, tilde -->     <!ENTITY Ouml   CDATA "Ö" -- capital O, dieresis or umlaut mark -->     <!ENTITY times  CDATA "×" -- multiply sign -->     <!ENTITY Oslash CDATA "Ø" -- capital O, slash -->     <!ENTITY Ugrave CDATA "Ù" -- capital U, grave accent -->     <!ENTITY Uacute CDATA "Ú" -- capital U, acute accent -->     <!ENTITY Ucirc  CDATA "Û" -- capital U, circumflex accent -->     <!ENTITY Uuml   CDATA "Ü" -- capital U, dieresis or umlaut mark -->     <!ENTITY Yacute CDATA "Ý" -- capital Y, acute accent -->     <!ENTITY THORN  CDATA "Þ" -- capital THORN, Icelandic -->     <!ENTITY szlig  CDATA "ß" -- small sharp s, German (sz ligature) -->     <!ENTITY agrave CDATA "à" -- small a, grave accent -->     <!ENTITY aacute CDATA "á" -- small a, acute accent -->     <!ENTITY acirc  CDATA "â" -- small a, circumflex accent -->     <!ENTITY atilde CDATA "ã" -- small a, tilde -->     <!ENTITY auml   CDATA "ä" -- small a, dieresis or umlaut mark -->     <!ENTITY aring  CDATA "å" -- small a, ring -->     <!ENTITY aelig  CDATA "æ" -- small ae diphthong (ligature) -->     <!ENTITY ccedil CDATA "ç" -- small c, cedilla -->     <!ENTITY egrave CDATA "è" -- small e, grave accent -->     <!ENTITY eacute CDATA "é" -- small e, acute accent -->     <!ENTITY ecirc  CDATA "ê" -- small e, circumflex accent -->     <!ENTITY euml   CDATA "ë" -- small e, dieresis or umlaut mark -->     <!ENTITY igrave CDATA "ì" -- small i, grave accent -->     <!ENTITY iacute CDATA "í" -- small i, acute accent -->     <!ENTITY icirc  CDATA "î" -- small i, circumflex accent -->     <!ENTITY iuml   CDATA "ï" -- small i, dieresis or umlaut mark -->     <!ENTITY eth    CDATA "ð" -- small eth, Icelandic -->     <!ENTITY ntilde CDATA "ñ" -- small n, tilde -->     <!ENTITY ograve CDATA "ò" -- small o, grave accent --> 
  2065.  
  2066.  
  2067.  
  2068. Berners-Lee & Connolly      Standards Track                    [Page 76] 
  2069.  RFC 1866            Hypertext Markup Language - 2.0        November 1995 
  2070.  
  2071.      <!ENTITY oacute CDATA "ó" -- small o, acute accent -->     <!ENTITY ocirc  CDATA "ô" -- small o, circumflex accent -->     <!ENTITY otilde CDATA "õ" -- small o, tilde -->     <!ENTITY ouml   CDATA "ö" -- small o, dieresis or umlaut mark -->     <!ENTITY divide CDATA "÷" -- divide sign -->     <!ENTITY oslash CDATA "ø" -- small o, slash -->     <!ENTITY ugrave CDATA "ù" -- small u, grave accent -->     <!ENTITY uacute CDATA "ú" -- small u, acute accent -->     <!ENTITY ucirc  CDATA "û" -- small u, circumflex accent -->     <!ENTITY uuml   CDATA "ü" -- small u, dieresis or umlaut mark -->     <!ENTITY yacute CDATA "ý" -- small y, acute accent -->     <!ENTITY thorn  CDATA "þ" -- small thorn, Icelandic -->     <!ENTITY yuml   CDATA "ÿ" -- small y, dieresis or umlaut mark --> 
  2072.  
  2073.  
  2074.  
  2075.  
  2076.  
  2077.  
  2078.  
  2079.  
  2080.  
  2081.  
  2082.  
  2083.  
  2084.  
  2085.  
  2086.  
  2087.  
  2088.  
  2089.  
  2090.  
  2091.  
  2092.  
  2093.  
  2094.  
  2095.  
  2096.  
  2097.  
  2098.  
  2099.  
  2100.  
  2101.  
  2102.  
  2103.  
  2104.  
  2105.  
  2106.  
  2107.  
  2108.  
  2109.  Berners-Lee & Connolly      Standards Track                    [Page 77] 
  2110.  
  2111.