home *** CD-ROM | disk | FTP | other *** search
/ Chip: 25 Years Anniversary / CHIP_25Jahre_Jubilaeum.iso / downloads / 401065 / WPO11 / Data1.cab / HTML32IP.DTD < prev    next >
Text File  |  2003-03-07  |  23KB  |  638 lines

  1. <!--    html32ip.dtd
  2.  
  3.     Added extensions output by Internet Publisher
  4.           added phrase elements: BLINK, INS
  5.           added a body content element: MULTICOL
  6.           added document content elements: FRAMESET, FRAME, NOFRAMES
  7.  
  8.         W3C Document Type Definition for the HyperText Markup Language
  9.         This version is code named Wilbur, and also as "HTML 3.2".
  10.  
  11.         Draft: Tuesday 25-June-96
  12.  
  13.         Author: Dave Raggett <dsr@w3.org>
  14.  
  15.         This is subject to change, pending final approval by the W3C
  16.         member companies. Changes are limited to bug fixes at this time.
  17.  
  18.         HTML 3.2 aims to capture recommended practice as of early '96
  19.         and as such to be used as a replacement for HTML 2.0 (RFC 1866).
  20.         Widely deployed rendering attributes are included where they
  21.         have been shown to be interoperable. SCRIPT and STYLE are
  22.         included to smooth the introduction of client-side scripts
  23.         and style sheets. Browsers must avoid showing the contents
  24.         of these element Otherwise support for them is not required.
  25.         ID, CLASS and STYLE attributes are not included in this version
  26.         of HTML.
  27.  
  28.         The next version of HTML after Wilbur is code named Cougar and
  29.         will add support for <OBJECT>, client-side scripting, style
  30.         sheets, and extensions to fill-out forms.
  31. -->
  32.  
  33. <!ENTITY % HTML.Version
  34.         "-//W3C//DTD HTML 3.2 Draft//EN"
  35.  
  36.         -- Typical usage:
  37.  
  38.             <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Draft//EN">
  39.             <html>
  40.             ...
  41.             </html>
  42.         --
  43.         >
  44.  
  45. <!--================== Deprecated Features Switch =========================-->
  46.  
  47. <!ENTITY % HTML.Deprecated "INCLUDE">
  48.  
  49. <!--================== Imported Names =====================================-->
  50.  
  51. <!ENTITY % Content-Type "CDATA"
  52.         -- meaning a MIME content type, as per RFC1521
  53.         -->
  54.  
  55. <!ENTITY % HTTP-Method "GET | POST"
  56.         -- as per HTTP specification
  57.         -->
  58.  
  59. <!ENTITY % URL "CDATA"
  60.         -- The term URL means a CDATA attribute
  61.            whose value is a Uniform Resource Locator,
  62.            See RFC1808 (June 95) and RFC1738 (Dec 94).
  63.         -->
  64.  
  65. <!-- Parameter Entities -->
  66.  
  67. <!ENTITY % head.misc "SCRIPT|STYLE|META|LINK" -- repeatable head elements -->
  68.  
  69. <!ENTITY % heading "H1|H2|H3|H4|H5|H6">
  70.  
  71. <!ENTITY % list "UL | OL |  DIR | MENU">
  72.  
  73. <![ %HTML.Deprecated [
  74.     <!ENTITY % preformatted "PRE | XMP | LISTING">
  75. ]]>
  76.  
  77. <!ENTITY % preformatted "PRE">
  78.  
  79. <!--================ Character mnemonic entities ==========================-->
  80.  
  81. <!ENTITY % ISOlat1 PUBLIC
  82.        "ISO 8879-1986//ENTITIES Added Latin 1//EN//HTML">
  83. %ISOlat1;
  84.  
  85. <!--================ Entities for special symbols =========================-->
  86. <!-- &trade ­ and &cbsp are not widely deployed and so not included here -->
  87.  
  88. <!ENTITY copy   CDATA "©"   -- copyright sign     -->
  89. <!ENTITY reg    CDATA "®"   -- registered sign    -->
  90. <!ENTITY amp    CDATA "&"   -- ampersand          -->
  91. <!ENTITY gt     CDATA ">"   -- greater than       -->
  92. <!ENTITY lt     CDATA "<"   -- less than          -->
  93. <!ENTITY quot   CDATA """   -- double quote       -->
  94. <!ENTITY nbsp   CDATA " "  -- non breaking space -->
  95.  
  96. <!--=================== Text Markup =======================================-->
  97.  
  98. <!ENTITY % font "TT | I | B  | U | STRIKE | BIG | SMALL | SUB | SUP">
  99.  
  100. <!ENTITY % phrase "EM | STRONG | DFN | CODE | SAMP | KBD | VAR | CITE | BLINK | INS">
  101.  
  102. <!ENTITY % special "A | IMG | APPLET | FONT | BR | SCRIPT | MAP">
  103.  
  104. <!ENTITY % form "INPUT | SELECT | TEXTAREA">
  105.  
  106. <!ENTITY % text "#PCDATA | %font | %phrase | %special | %form">
  107.  
  108. <!ELEMENT (%font|%phrase) - - (%text)*>
  109.  
  110. <!-- there are also 16 widely known color names although
  111.   the resulting colors are implementation dependent:
  112.  
  113.    aqua, black, blue, fuchsia, gray, green, lime, maroon,
  114.    navy, olive, purple, red, silver, teal, white, and yellow
  115.  
  116.  These colors were originally picked as being the standard
  117.  16 colors supported with the Windows VGA palette.
  118.  -->
  119.  
  120. <!ELEMENT FONT - - (%text)*     -- local change to font -->
  121. <!ATTLIST FONT
  122.     size    CDATA   #IMPLIED    -- [+]nn e.g. size="+1", size=4 --
  123.     color   CDATA   #IMPLIED    -- #RRGGBB in hex, e.g. red: color="#FF0000" --
  124.     >
  125.  
  126. <!ELEMENT BR    - O EMPTY   -- forced line break -->
  127. <!ATTLIST BR
  128.         clear (left|all|right|none) none -- control of text flow --
  129.         >
  130.  
  131. <!--================== HTML content models ================================-->
  132. <!--
  133.     HTML has three basic content models:
  134.  
  135.         %text       character level elements and text strings
  136.         %flow       block-like elements e.g. paragraphs and lists
  137.         %bodytext   as (b) plus headers and ADDRESS
  138. -->
  139.  
  140. <!ENTITY % block
  141.      "P | %list | %preformatted | DL | DIV | CENTER |
  142.       BLOCKQUOTE | FORM | ISINDEX | HR | TABLE">
  143.  
  144. <!-- %flow is used for DD and LI -->
  145.  
  146. <!ENTITY % flow "(%text | %block)*">
  147.  
  148. <!--=================== Document Body =====================================-->
  149.  
  150. <!ENTITY % body.content "(%heading | %text | %block | ADDRESS | MULTICOL)*">
  151.  
  152. <!ENTITY % color "CDATA" -- a color specification: #HHHHHH @@ details? -->
  153.  
  154. <!ENTITY % body-color-attrs "
  155.         bgcolor %color #IMPLIED
  156.         text %color #IMPLIED
  157.         link %color #IMPLIED
  158.         vlink %color #IMPLIED
  159.         alink %color #IMPLIED
  160.         ">
  161.  
  162. <!ELEMENT BODY O O  %body.content>
  163. <!ATTLIST BODY
  164.         background %URL #IMPLIED  -- texture tile for document background --
  165.         %body-color-attrs;  -- bgcolor, text, link, vlink, alink --
  166.         >
  167.  
  168. <!ENTITY % address.content "((%text;) | P)*">
  169.  
  170. <!ELEMENT ADDRESS - - %address.content>
  171.  
  172. <!ELEMENT DIV - - %body.content>
  173. <!ATTLIST DIV
  174.         align   (left|center|right) left -- alignment of following text --
  175.         >
  176.  
  177. <!-- CENTER is a shorthand for DIV with ALIGN=CENTER -->
  178. <!ELEMENT center - - %body.content>
  179.  
  180. <!--================== The Anchor Element =================================-->
  181.  
  182. <!ELEMENT A - - (%text)* -(A)>
  183. <!ATTLIST A
  184.         name    CDATA   #IMPLIED    -- named link end --
  185.         href    %URL    #IMPLIED    -- URL for linked resource --
  186.         rel     CDATA   #IMPLIED    -- forward link types --
  187.         rev     CDATA   #IMPLIED    -- reverse link types --
  188.         title   CDATA   #IMPLIED    -- advisory title string --
  189.         >
  190.  
  191. <!--================== Client-side image maps ============================-->
  192.  
  193. <!-- These can be placed in the same document or grouped in a
  194.      separate document although this isn't yet widely supported -->
  195.  
  196. <!ENTITY % SHAPE "(rect|circle|poly|default)">
  197. <!ENTITY % COORDS "CDATA" -- comma separated list of numbers -->
  198.  
  199. <!ELEMENT MAP - - (AREA)*>
  200. <!ATTLIST MAP
  201.     name    CDATA   #IMPLIED
  202.     >
  203.  
  204. <!ELEMENT AREA - O EMPTY>
  205. <!ATTLIST AREA
  206.     shape   %SHAPE  rect
  207.     coords  %COORDS #IMPLIED  -- always needed except for shape=default --
  208.     href    %URL    #IMPLIED  -- this region acts as hypertext link --
  209.     nohref (nohref) #IMPLIED  -- this region has no action --
  210.     alt     CDATA   #REQUIRED
  211.     >
  212.  
  213. <!--================== The LINK Element ==================================-->
  214.  
  215. <!ENTITY % Types "CDATA"
  216.         -- See Internet Draft: draft-ietf-html-relrev-00.txt
  217.            LINK has been part of HTML since the early days
  218.            although few browsers as yet take advantage of it.
  219.  
  220.            Relationship values can be used in principle:
  221.  
  222.                 a) for document specific toolbars/menus when used
  223.                    with the LINK element in document head:
  224.                 b) to link to a separate style sheet (rel=stylesheet)
  225.                 c) to make a link to a script (rel=script)
  226.                 d) by stylesheets to control how collections of
  227.                    html nodes are rendered into printed documents
  228.                 e) to make a link to a printable version of this document
  229.                    e.g. a postscript or pdf version (rel=print)
  230. -->
  231.  
  232. <!ELEMENT LINK - O EMPTY>
  233. <!ATTLIST LINK
  234.         id      ID      #IMPLIED    -- SGML ID attribute --
  235.         href    %URL    #IMPLIED    -- URL for linked resource --
  236.         rel     %Types  #IMPLIED    -- forward link types --
  237.         rev     %Types  #IMPLIED    -- reverse link types --
  238.         title   CDATA   #IMPLIED    -- advisory title string --
  239.         >
  240.  
  241. <!--=================== Images ============================================-->
  242.  
  243. <!ENTITY % Length "CDATA" -- nn for pixels or nn% for percentage length -->
  244. <!ENTITY % Pixels "CDATA" -- integer representing length in pixels -->
  245.  
  246. <!-- Suggested widths are used for negotiating image size
  247.      with the module responsible for painting the image.
  248.      align=left or right cause image to float to margin
  249.      and for subsequent text to wrap around image -->
  250.  
  251. <!ENTITY % IAlign "(top|middle|bottom|left|right)">
  252.  
  253. <!ELEMENT IMG    - O EMPTY --  Embedded image -->
  254. <!ATTLIST IMG
  255.         src     %URL     #REQUIRED  -- URL of image to embed --
  256.         alt     CDATA    #IMPLIED   -- for display in place of image --
  257.         align   %IAlign  #IMPLIED   -- vertical or horizontal alignment --
  258.         height  %Pixels  #IMPLIED   -- suggested height in pixels --
  259.         width   %Pixels  #IMPLIED   -- suggested width in pixels --
  260.         border  %Pixels  #IMPLIED   -- suggested link border width --
  261.         hspace  %Pixels  #IMPLIED   -- suggested horizontal gutter --
  262.         vspace  %Pixels  #IMPLIED   -- suggested vertical gutter --
  263.         usemap  %URL     #IMPLIED   -- use client-side image map --
  264.         ismap   (ismap)  #IMPLIED   -- use server image map --
  265.         >
  266.  
  267. <!-- USEMAP points to a MAP element which may be in this document
  268.   or an external document, although the latter is not widely supported -->
  269.  
  270. <!--=================== Java APPLET tag ===================================-->
  271. <!--
  272.   This tag is supported by all java enabled browsers. Applet resources
  273.   (including their classes) are normally loaded relative to the document
  274.   URL (or <BASE> element if it is defined). The CODEBASE attribute is used
  275.   to change this default behavior. If the CODEBASE attribute is defined then
  276.   it specifies a different location to find applet resources. The value
  277.   can be an absolute URL or a relative URL. The absolute URL is used as is
  278.   without modification and is not effected by the documents <BASE> element.
  279.   When the codebase attribute is relative, then it is relative to the
  280.   document URL (or <BASE> tag if defined). <TEXTFLOW> avoids the problems
  281.   with SGML mixed content. It can always be omitted *except* when the APPLET
  282.   element hasn't any content. White space, comments and PARAM elements
  283.   don't count as content for this purpose. TEXTFLOW was introduced into
  284.   the DTD to satisfy SGML parsers, but is ignored by current Web browsers.
  285. -->
  286. <!ELEMENT APPLET - - (PARAM*, TEXTFLOW)>
  287. <!ATTLIST APPLET
  288.         codebase %URL     #IMPLIED   -- code base --
  289.         code     CDATA    #REQUIRED  -- class file --
  290.         name     CDATA    #IMPLIED   -- applet name --
  291.         alt      CDATA    #IMPLIED   -- for display in place of applet --
  292.         align    %IAlign  #IMPLIED   -- vertical or horizontal alignment --
  293.         height   %Pixels  #REQUIRED  -- suggested height in pixels --
  294.         width    %Pixels  #REQUIRED  -- suggested width in pixels --
  295.         hspace   %Pixels  #IMPLIED   -- suggested horizontal gutter --
  296.         vspace   %Pixels  #IMPLIED   -- suggested vertical gutter --
  297.         >
  298.  
  299. <!ELEMENT PARAM - O EMPTY>
  300. <!ATTLIST PARAM
  301.         name    NAME      #REQUIRED  -- The name of the parameter --
  302.         value   CDATA     #IMPLIED   -- The value of the parameter --
  303.         >
  304. <!ELEMENT TEXTFLOW O O (%text)* -- needed to bypass mixed content model -->
  305.  
  306. <!--
  307. Here is an example:
  308.  
  309.     <applet codebase="applets/NervousText"
  310.         code=NervousText.class
  311.         width=300
  312.         height=50>
  313.     <param name=text value="Java is Cool!">
  314.     <img src=sorry.gif alt="This looks better with Java support">
  315.     </applet>
  316. -->
  317.  
  318. <!--=================== Horizontal Rule ===================================-->
  319.  
  320. <!ELEMENT HR    - O EMPTY>
  321. <!ATTLIST HR
  322.         align (left|right|center) #IMPLIED
  323.         noshade (noshade) #IMPLIED
  324.         size  %Pixels #IMPLIED
  325.         width %Length #IMPLIED
  326.         >
  327. <!--=================== Paragraphs=========================================-->
  328.  
  329. <!ELEMENT P     - O (%text)*>
  330. <!ATTLIST P
  331.         align  (left|center|right) #IMPLIED
  332.         >
  333.  
  334. <!--=================== Headings ==========================================-->
  335.  
  336. <!--
  337.   There are six levels of headers from H1 (the most important)
  338.   to H6 (the least important).
  339. -->
  340.  
  341. <!ELEMENT ( %heading )  - -  (%text;)*>
  342. <!ATTLIST ( %heading )
  343.         align  (left|center|right) #IMPLIED
  344.         >
  345.  
  346. <!--=================== Preformatted Text =================================-->
  347.  
  348. <!-- excludes images and changes in font size -->
  349.  
  350. <!ENTITY % pre.exclusion "IMG|BIG|SMALL|SUB|SUP|FONT">
  351.  
  352. <!ELEMENT PRE - - (%text)* -(%pre.exclusion)>
  353. <!ATTLIST PRE
  354.         width NUMBER #implied -- is this widely supported? --
  355.         >
  356.  
  357. <![ %HTML.Deprecated [
  358.  
  359. <!ENTITY % literal "CDATA"
  360.         -- historical, non-conforming parsing mode where
  361.            the only markup signal is the end tag
  362.            in full
  363.         -->
  364.  
  365. <!ELEMENT (XMP|LISTING) - -  %literal>
  366. <!ELEMENT PLAINTEXT - O %literal>
  367.  
  368. ]]>
  369.  
  370. <!--=================== Block-like Quotes =================================-->
  371.  
  372. <!ELEMENT BLOCKQUOTE - - %body.content>
  373.  
  374. <!--=================== Lists =============================================-->
  375.  
  376. <!--
  377.     HTML 3.2 allows you to control the sequence number for ordered lists.
  378.     You can set the sequence number with the START and VALUE attributes.
  379.     The TYPE attribute may be used to specify the rendering of ordered
  380.     and unordered lists.
  381. -->
  382.  
  383. <!-- definition lists - DT for term, DD for its definition -->
  384.  
  385. <!ELEMENT DL    - -  (DT|DD)*>
  386. <!ATTLIST DL
  387.         compact (compact) #IMPLIED -- more compact style --
  388.         >
  389.  
  390. <!ELEMENT DT - O  (%text)*>
  391. <!ELEMENT DD - O  %flow;>
  392.  
  393. <!-- Ordered lists OL, and unordered lists UL -->
  394. <!ELEMENT (OL|UL) - -  (LI)*>
  395.  
  396. <!--
  397.        Numbering style
  398.     1   arablic numbers     1, 2, 3, ...
  399.     a   lower alpha         a, b, c, ...
  400.     A   upper alpha         A, B, C, ...
  401.     i   lower roman         i, ii, iii, ...
  402.     I   upper roman         I, II, III, ...
  403.  
  404.     The style is applied to the sequence number which by default
  405.     is reset to 1 for the first list item in an ordered list.
  406.  
  407.     This can't be expressed directly in SGML due to case folding.
  408. -->
  409.  
  410. <!ENTITY % OLStyle "CDATA" -- constrained to: [1|a|A|i|I] -->
  411.  
  412. <!ATTLIST OL -- ordered lists --
  413.         type      %OLStyle   #IMPLIED   -- numbering style --
  414.         start     NUMBER     #IMPLIED   -- starting sequence number --
  415.         compact  (compact)   #IMPLIED   -- reduced interitem spacing --
  416.         >
  417.  
  418. <!-- bullet styles -->
  419.  
  420. <!ENTITY % ULStyle "disc|square|circle">
  421.  
  422. <!ATTLIST UL -- unordered lists --
  423.         type    (%ULStyle)   #IMPLIED   -- bullet style --
  424.         compact (compact)    #IMPLIED   -- reduced interitem spacing --
  425.         >
  426.  
  427. <!ELEMENT (DIR|MENU) - -  (LI)* -(%block)>
  428. <!ATTLIST DIR
  429.         compact (compact) #IMPLIED
  430.         >
  431. <!ATTLIST MENU
  432.         compact (compact) #IMPLIED
  433.         >
  434.  
  435. <!-- <DIR>              Directory list                  -->
  436. <!-- <DIR COMPACT>      Compact list style              -->
  437. <!-- <MENU>             Menu list                       -->
  438. <!-- <MENU COMPACT>     Compact list style              -->
  439.  
  440. <!-- The type attribute can be used to change the bullet style
  441.      in unordered lists and the numbering style in ordered lists -->
  442.  
  443. <!ENTITY % LIStyle "CDATA" -- constrained to: "(%ULStyle|%OLStyle)" -->
  444.  
  445. <!ELEMENT LI - O %flow -- list item -->
  446. <!ATTLIST LI
  447.         type    %LIStyle     #IMPLIED   -- list item style --
  448.         value    NUMBER      #IMPLIED   -- reset sequence number --
  449.         >
  450.  
  451. <!--================ Forms ===============================================-->
  452.  
  453. <!ELEMENT FORM - - %body.content -(FORM)>
  454. <!ATTLIST FORM
  455.         action %URL #REQUIRED -- server-side form handler --
  456.         method (%HTTP-Method) GET -- see HTTP specification --
  457.         enctype %Content-Type; "application/x-www-form-urlencoded"
  458.         >
  459.  
  460. <!ENTITY % InputType
  461.         "(TEXT | PASSWORD | CHECKBOX | RADIO | SUBMIT
  462.             | RESET | FILE | HIDDEN | IMAGE)">
  463.  
  464. <!ELEMENT INPUT - O EMPTY>
  465. <!ATTLIST INPUT
  466.         type %InputType TEXT     -- what kind of widget is needed --
  467.         name  CDATA #IMPLIED     -- required for all but submit and reset --
  468.         value CDATA #IMPLIED     -- required for radio and checkboxes --
  469.         checked (checked) #IMPLIED -- for radio buttons and check boxes --
  470.         size CDATA  #IMPLIED     -- specific to each type of field --
  471.         maxlength NUMBER #IMPLIED
  472.         src   %URL  #IMPLIED     -- for fields with background images --
  473.         align  (top|middle|bottom|left|right) top -- image alignment --
  474.         >
  475.  
  476. <!ELEMENT SELECT - - (OPTION+)>
  477. <!ATTLIST SELECT
  478.         name CDATA #REQUIRED
  479.         size NUMBER #IMPLIED
  480.         multiple (multiple) #IMPLIED
  481.         >
  482.  
  483. <!ELEMENT OPTION - O (#PCDATA)*>
  484. <!ATTLIST OPTION
  485.         selected (selected) #IMPLIED
  486.         value  CDATA  #IMPLIED -- defaults to element content --
  487.         >
  488.  
  489. <!-- Multi-line text input field. -->
  490.  
  491. <!ELEMENT TEXTAREA - - (#PCDATA)*>
  492. <!ATTLIST TEXTAREA
  493.         name CDATA #REQUIRED
  494.         rows NUMBER #REQUIRED
  495.         cols NUMBER #REQUIRED
  496.         >
  497.  
  498. <!--======================= Tables ========================================-->
  499.  
  500. <!-- Widely deployed subset of the full table standard, see RFC 1942
  501.      e.g. at http://www.ics.uci.edu/pub/ietf/html/rfc1942.txt -->
  502.  
  503. <!-- horizontal placement of table relative to window -->
  504. <!ENTITY % Where "(left|center|right)">
  505.  
  506. <!-- horizontal alignment attributes for cell contents -->
  507. <!ENTITY % cell.halign
  508.         "align  (left|center|right) #IMPLIED"
  509.         >
  510.  
  511. <!-- vertical alignment attributes for cell contents -->
  512. <!ENTITY % cell.valign
  513.         "valign  (top|middle|bottom|baseline)  #IMPLIED"
  514.         >
  515.  
  516. <!ELEMENT table - - (caption?, tr+)>
  517. <!ELEMENT tr - O (th|td)*>
  518. <!ELEMENT (th|td) - O %body.content>
  519.  
  520. <!ATTLIST table                       -- table element --
  521.         align     %Where;   #IMPLIED  -- table position relative to window --
  522.         width     %Length   #IMPLIED  -- table width relative to window --
  523.         border    %Pixels   #IMPLIED  -- controls frame width around table --
  524.         dummy     (border)  #IMPLIED  -- fixes SGML error for border w/o value --
  525.         cellspacing %Pixels #IMPLIED  -- spacing between cells --
  526.         cellpadding %Pixels #IMPLIED  -- spacing within cells --
  527.         >
  528.  
  529. <!ELEMENT CAPTION - - (%text;)* -- table or figure caption -->
  530. <!ATTLIST CAPTION
  531.         align (top|bottom) #IMPLIED
  532.         >
  533.  
  534. <!ATTLIST tr                       -- table row --
  535.         %cell.halign;              -- horizontal alignment in cells --
  536.         %cell.valign;              -- vertical alignment in cells --
  537.         >
  538.  
  539. <!ATTLIST (th|td)                  -- header or data cell --
  540.         nowrap (nowrap)  #IMPLIED  -- suppress word wrap --
  541.         rowspan NUMBER   1         -- number of rows spanned by cell --
  542.         colspan NUMBER   1         -- number of cols spanned by cell --
  543.         %cell.halign;              -- horizontal alignment in cells --
  544.         %cell.valign;              -- vertical alignment in cells --
  545.         >
  546.  
  547. <!--================ Document Head ========================================-->
  548.  
  549. <!-- %head.misc defined earlier on as "SCRIPT|STYLE|META|LINK" -->
  550.  
  551. <!ENTITY % head.content "TITLE & ISINDEX? & BASE?">
  552.  
  553. <!ELEMENT HEAD O O  (%head.content) +(%head.misc)>
  554.  
  555. <!ELEMENT TITLE - -  (#PCDATA)* -(%head.misc)
  556.           -- The TITLE element is not considered part of the flow of text.
  557.              It should be displayed, for example as the page header or
  558.              window title.
  559.           -->
  560.  
  561. <!ELEMENT ISINDEX - O EMPTY>
  562. <!ATTLIST ISINDEX
  563.         prompt CDATA #IMPLIED -- prompt message -->
  564.  
  565. <!--
  566.     The BASE element gives an absolute URL for dereferencing relative
  567.     URLs, e.g.
  568.  
  569.          <BASE href="http://foo.com/index.html">
  570.          ...
  571.          <IMG SRC="images/bar.gif">
  572.  
  573.     The image is deferenced to
  574.  
  575.          http://foo.com/images/bar.gif
  576.  
  577.    In the absence of a BASE element the document URL should be used.
  578.    Note that this is not necessarily the same as the URL used to
  579.    request the document, as the base URL may be overridden by an HTTP
  580.    header accompanying the document.
  581. -->
  582.  
  583. <!ELEMENT BASE - O EMPTY>
  584. <!ATTLIST BASE
  585.         href %URL  #REQUIRED
  586.         >
  587.  
  588. <!ELEMENT META - O EMPTY -- Generic Metainformation -->
  589. <!ATTLIST META
  590.         http-equiv  NAME    #IMPLIED  -- HTTP response header name  --
  591.         name        NAME    #IMPLIED  -- metainformation name       --
  592.         content     CDATA   #REQUIRED -- associated information     --
  593.         >
  594.  
  595. <!-- SCRIPT/STYLE are place holders for transition to next version of HTML -->
  596.  
  597. <!ELEMENT STYLE  - - (#PCDATA)*  -(%head.misc) -- style info -->
  598. <!ELEMENT SCRIPT - - (#PCDATA)*  -(%head.misc) -- script statements -->
  599.  
  600. <!--================ Document Structure ===================================-->
  601.  
  602. <!ENTITY % version.attr "VERSION CDATA #FIXED '%HTML.Version;'">
  603.  
  604. <![ %HTML.Deprecated [
  605.         <!ENTITY % html.content "HEAD, (BODY | FRAMESET), PLAINTEXT?">
  606.   ]]>
  607. <!ENTITY % html.content "HEAD, (BODY | FRAMESET)">
  608.  
  609. <!ELEMENT HTML O O  (%html.content)>
  610. <!ATTLIST HTML
  611.         %version.attr;
  612.         >
  613.  
  614. <!--================ Multi-column =========================================-->
  615.  
  616. <!ELEMENT MULTICOL   - O %body.content --  Embedded image -->
  617. <!ATTLIST MULTICOL
  618.         cols NUMBER #REQUIRED       -- number of columns --
  619.         gutter  %Pixels  10         -- pixels of space between columns --
  620.         width   %Pixels  #IMPLIED   -- width of an individual column --
  621.         >
  622.  
  623. <!--================ Frames ===============================================-->
  624.  
  625. <!ELEMENT FRAMESET  - - (NOFRAMES? & (FRAMESET|FRAME)+ ) >
  626. <!ELEMENT FRAME     - O EMPTY >
  627. <!ELEMENT NOFRAMES  - - %body.content >
  628.  
  629. <!ATTLIST FRAMESET ROWS CDATA #IMPLIED
  630.                    COLS CDATA #IMPLIED >
  631.  
  632. <!ATTLIST FRAME SRC          %URL          #IMPLIED
  633.                 NAME         CDATA         #IMPLIED
  634.                 MARGINWIDTH  %Pixels       #IMPLIED
  635.                 MARGINHEIGHT %Pixels       #IMPLIED
  636.                 SCROLLING    (yes|no|auto) "auto"
  637.                 NORESIZE     (noresize)    "noresize" >
  638.