home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 Mobile / Chip_Mobile_2001.iso / palm / tools / richread / richread.exe / HTML32.dtd < prev    next >
Text File  |  2000-01-23  |  21KB  |  599 lines

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