?? html32.dtd
字號:
<!--=================== Horizontal Rule ===================================--><!ELEMENT HR - O EMPTY><!ATTLIST HR align (left|right|center) #IMPLIED noshade (noshade) #IMPLIED size %Pixels #IMPLIED width %Length #IMPLIED ><!--=================== Paragraphs=========================================--><!ELEMENT P - O (%text)*><!ATTLIST P align (left|center|right) #IMPLIED ><!--=================== Headings ==========================================--><!-- There are six levels of headers from H1 (the most important) to H6 (the least important).--><!ELEMENT ( %heading ) - - (%text;)*><!ATTLIST ( %heading ) align (left|center|right) #IMPLIED ><!--=================== Preformatted Text =================================--><!-- excludes images and changes in font size --><!ENTITY % pre.exclusion "IMG|BIG|SMALL|SUB|SUP|FONT"><!ELEMENT PRE - - (%text)* -(%pre.exclusion)><!ATTLIST PRE width NUMBER #implied -- is this widely supported? -- ><![ %HTML.Deprecated [<!ENTITY % literal "CDATA" -- historical, non-conforming parsing mode where the only markup signal is the end tag in full --><!ELEMENT (XMP|LISTING) - - %literal><!ELEMENT PLAINTEXT - O %literal>]]><!--=================== Block-like Quotes =================================--><!ELEMENT BLOCKQUOTE - - %body.content><!--=================== Lists =============================================--><!-- HTML 3.2 allows you to control the sequence number for ordered lists. You can set the sequence number with the START and VALUE attributes. The TYPE attribute may be used to specify the rendering of ordered and unordered lists.--><!-- definition lists - DT for term, DD for its definition --><!ELEMENT DL - - (DT|DD)+><!ATTLIST DL compact (compact) #IMPLIED -- more compact style -- ><!ELEMENT DT - O (%text)*><!ELEMENT DD - O %flow;><!-- Ordered lists OL, and unordered lists UL --><!ELEMENT (OL|UL) - - (LI)+><!-- Numbering style 1 arablic numbers 1, 2, 3, ... a lower alpha a, b, c, ... A upper alpha A, B, C, ... i lower roman i, ii, iii, ... I upper roman I, II, III, ... The style is applied to the sequence number which by default is reset to 1 for the first list item in an ordered list. This can't be expressed directly in SGML due to case folding.--><!ENTITY % OLStyle "CDATA" -- constrained to: [1|a|A|i|I] --><!ATTLIST OL -- ordered lists -- type %OLStyle #IMPLIED -- numbering style -- start NUMBER #IMPLIED -- starting sequence number -- compact (compact) #IMPLIED -- reduced interitem spacing -- ><!-- bullet styles --><!ENTITY % ULStyle "disc|square|circle"><!ATTLIST UL -- unordered lists -- type (%ULStyle) #IMPLIED -- bullet style -- compact (compact) #IMPLIED -- reduced interitem spacing -- ><!ELEMENT (DIR|MENU) - - (LI)+ -(%block)><!ATTLIST DIR compact (compact) #IMPLIED ><!ATTLIST MENU compact (compact) #IMPLIED ><!-- <DIR> Directory list --><!-- <DIR COMPACT> Compact list style --><!-- <MENU> Menu list --><!-- <MENU COMPACT> Compact list style --><!-- The type attribute can be used to change the bullet style in unordered lists and the numbering style in ordered lists --><!ENTITY % LIStyle "CDATA" -- constrained to: "(%ULStyle|%OLStyle)" --><!ELEMENT LI - O %flow -- list item --><!ATTLIST LI type %LIStyle #IMPLIED -- list item style -- value NUMBER #IMPLIED -- reset sequence number -- ><!--================ Forms ===============================================--><!ELEMENT FORM - - %body.content -(FORM)><!ATTLIST FORM action %URL #IMPLIED -- server-side form handler -- method (%HTTP-Method) GET -- see HTTP specification -- enctype %Content-Type; "application/x-www-form-urlencoded" ><!ENTITY % InputType "(TEXT | PASSWORD | CHECKBOX | RADIO | SUBMIT | RESET | FILE | HIDDEN | IMAGE)"><!ELEMENT INPUT - O EMPTY><!ATTLIST INPUT type %InputType TEXT -- what kind of widget is needed -- name CDATA #IMPLIED -- required for all but submit and reset -- value CDATA #IMPLIED -- required for radio and checkboxes -- checked (checked) #IMPLIED -- for radio buttons and check boxes -- size CDATA #IMPLIED -- specific to each type of field -- maxlength NUMBER #IMPLIED -- max chars allowed in text fields -- src %URL #IMPLIED -- for fields with background images -- align %IAlign #IMPLIED -- vertical or horizontal alignment -- ><!ELEMENT SELECT - - (OPTION+)><!ATTLIST SELECT name CDATA #REQUIRED size NUMBER #IMPLIED multiple (multiple) #IMPLIED ><!ELEMENT OPTION - O (#PCDATA)*><!ATTLIST OPTION selected (selected) #IMPLIED value CDATA #IMPLIED -- defaults to element content -- ><!-- Multi-line text input field. --><!ELEMENT TEXTAREA - - (#PCDATA)*><!ATTLIST TEXTAREA name CDATA #REQUIRED rows NUMBER #REQUIRED cols NUMBER #REQUIRED ><!--======================= Tables ========================================--><!-- Widely deployed subset of the full table standard, see RFC 1942 e.g. at http://www.ics.uci.edu/pub/ietf/html/rfc1942.txt --><!-- horizontal placement of table relative to window --><!ENTITY % Where "(left|center|right)"><!-- horizontal alignment attributes for cell contents --><!ENTITY % cell.halign "align (left|center|right) #IMPLIED" ><!-- vertical alignment attributes for cell contents --><!ENTITY % cell.valign "valign (top|middle|bottom) #IMPLIED" ><!ELEMENT table - - (caption?, tr+)><!ELEMENT tr - O (th|td)*><!ELEMENT (th|td) - O %body.content><!ATTLIST table -- table element -- align %Where; #IMPLIED -- table position relative to window -- width %Length #IMPLIED -- table width relative to window -- border %Pixels #IMPLIED -- controls frame width around table -- cellspacing %Pixels #IMPLIED -- spacing between cells -- cellpadding %Pixels #IMPLIED -- spacing within cells -- ><!ELEMENT CAPTION - - (%text;)* -- table or figure caption --><!ATTLIST CAPTION align (top|bottom) #IMPLIED ><!ATTLIST tr -- table row -- %cell.halign; -- horizontal alignment in cells -- %cell.valign; -- vertical alignment in cells -- ><!ATTLIST (th|td) -- header or data cell -- nowrap (nowrap) #IMPLIED -- suppress word wrap -- rowspan NUMBER 1 -- number of rows spanned by cell -- colspan NUMBER 1 -- number of cols spanned by cell -- %cell.halign; -- horizontal alignment in cell -- %cell.valign; -- vertical alignment in cell -- width %Pixels #IMPLIED -- suggested width for cell -- height %Pixels #IMPLIED -- suggested height for cell -- ><!--================ Document Head ========================================--><!-- %head.misc defined earlier on as "SCRIPT|STYLE|META|LINK" --><!ENTITY % head.content "TITLE & ISINDEX? & BASE?"><!ELEMENT HEAD O O (%head.content) +(%head.misc)><!ELEMENT TITLE - - (#PCDATA)* -(%head.misc) -- The TITLE element is not considered part of the flow of text. It should be displayed, for example as the page header or window title. --><!ELEMENT ISINDEX - O EMPTY><!ATTLIST ISINDEX prompt CDATA #IMPLIED -- prompt message --><!-- The BASE element gives an absolute URL for dereferencing relative URLs, e.g. <BASE href="http://foo.com/index.html"> ... <IMG SRC="images/bar.gif"> The image is deferenced to http://foo.com/images/bar.gif In the absence of a BASE element the document URL should be used. Note that this is not necessarily the same as the URL used to request the document, as the base URL may be overridden by an HTTP header accompanying the document.--><!ELEMENT BASE - O EMPTY><!ATTLIST BASE href %URL #REQUIRED ><!ELEMENT META - O EMPTY -- Generic Metainformation --><!ATTLIST META http-equiv NAME #IMPLIED -- HTTP response header name -- name NAME #IMPLIED -- metainformation name -- content CDATA #REQUIRED -- associated information -- ><!-- SCRIPT/STYLE are place holders for transition to next version of HTML --><!ELEMENT STYLE - - CDATA -- placeholder for style info --><!ELEMENT SCRIPT - - CDATA -- placeholder for script statements --><!--================ Document Structure ===================================--><!ENTITY % version.attr "VERSION CDATA #FIXED '%HTML.Version;'"><![ %HTML.Deprecated [ <!ENTITY % html.content "HEAD, BODY, PLAINTEXT?">]]><!ENTITY % html.content "HEAD, BODY"><!ELEMENT HTML O O (%html.content)><!ATTLIST HTML %version.attr; >
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -