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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
<?DTD2HTML -home- >
This document allows you to navigate through the structure of the HTML
DTD. The element and attribute descriptions contained within this document
were extracted from the document
<a href="http://info.cern.ch/hypertext/WWW/MarkUp/HTML.html">
Hypertext Markup Language (HTML)</a>.
<P>
<?DTD2HTML a >
An anchor is a piece of text which marks the beginning and/or the
end of a hypertext link.
Go <a href="http://info.cern.ch/hypertext/WWW/MarkUp/Elements/A.html">
here</a> for more information on an anchor.
<p>
<strong>Example</strong>:
<pre>
<A HREF="http://info.cern.ch/hypertext/WWW/MarkUp/Elements/A.html">
</pre>
<P>
<?DTD2HTML a* >
<P>
<?DTD2HTML a*href >
OPTIONAL. If the HREF attribute is present, the anchor
is sensitive text: the start of a link. If the reader selects this
text, (s)he should be presented with another document
whose network address is defined by the value of the
HREF attribute.
<P>
<?DTD2HTML a*methods >
OPTIONAL. The value of this field is a string which if
present must be a comma separated list of HTTP
METHODS supported by the object for public use.
<P>
<?DTD2HTML a*name >
OPTIONAL. If present, the attribute NAME allows the
anchor to be the destination of a link. The value of the
attribute is an identifier for the anchor. Identifiers are
arbitrary strings but must be unique within the HTML
document. Another document can then make a reference
explicitly to this anchor by putting the identifier after the
address, separated by a hash sign.
<P>
<?DTD2HTML a*rel >
OPTIONAL. An attribute REL may give the relationship
(s) described by the hypertext link. The value is a
comma-separated list of relationship values. Values and
their semantics will be registered by the HTML
registration authority . The default relationship if none
other is given is void. REL should not be present unless
HREF is present.
<P>
<?DTD2HTML a*rev >
OPTIONAL. The same as REL , but the semantics of the
link type 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.
<P>
<?DTD2HTML a*title >
OPTIONAL. This is informational only. If present the
value of this field should equal the value of the TITLE of
the document whose address is given by the HREF
attribute.
<P>
<?DTD2HTML a*urn >
OPTIONAL. If present, this specifies a uniform resource
number for the document.
<P>
<?DTD2HTML address >
This element is for address information, signatures, authorship, etc,
often at the top or bottom of a document.
<p>
<strong>Example</strong>:
<pre>
<ADDRESS>
John Doe, jdoe@foo.org.com.
</ADDRESS>
</pre>
<P>
<?DTD2HTML b >
Boldface, where available, otherwise alternative mapping
allowed.
<P>
<?DTD2HTML base >
This element allows the URL of the document itself to be recorded in
situations in which the document may be read out of context. URLs
within the document may be in a "partial" form relative to this base
address.
<P>
<?DTD2HTML base* >
<P>
<?DTD2HTML base*href >
The URL of the document.
<P>
<?DTD2HTML blockquote >
Block quote.
<P>
<?DTD2HTML body >
The BODY element contains all the information which is part of the
document, as opposed information about the document which is in the
<A HREF="head.html">HEAD</A>.
<P>
<?DTD2HTML cite >
A citation. Typically italic.
<P>
<?DTD2HTML code >
Example of code. typically monospaced font. (Do not confuse
with <A HREF="pre.html">PRE</A>).
<P>
<?DTD2HTML dd >
Definition text of a term in a definition list
(<A HREF="dl.html">DL</A>).
<P>
<?DTD2HTML dfn >
The defining instance of a term. Typically bold or bold italic.
<P>
<?DTD2HTML dir >
A list of short elements, typically less than 20 characters.
<P>
<?DTD2HTML dir* >
<P>
<?DTD2HTML dir*compact >
Suggests that a compact rendering be used.
<P>
<?DTD2HTML dl >
A glossary (or definition list). Apart from glossaries, this element is
useful for presenting a set of named elements to the reader.
<P>
<?DTD2HTML dt >
Definition term in a definition list
(<A HREF="dl.html">DL</A>).
<P>
<?DTD2HTML em >
Emphasis, typically italic.
<P>
<?DTD2HTML h1 >
Level 1 heading.
<P>
<?DTD2HTML h2 >
Level 2 heading.
<P>
<?DTD2HTML h3 >
Level 3 heading.
<P>
<?DTD2HTML h4 >
Level 4 heading.
<P>
<?DTD2HTML h5 >
Level 5 heading.
<P>
<?DTD2HTML h6 >
Level 6 heading.
<P>
<?DTD2HTML head >
The HEAD element contains all information about the document in
general. It does not contain any text which is part of the document: this
is in the <A HREF="body.html">BODY</A>.
<p>
<strong>Example</strong>:
<pre>
<HEAD>
<TITLE>This Is the Title</TITLE>
<NEXTID N=z20>
<BASE HREF="http://foo.org.com/home/">
</HEAD>
</pre>
<P>
<?DTD2HTML hr >
Divider between sections of text such as a full width
horizontal rule or equivalent graphic.
<P>
<?DTD2HTML html >
Topmost element. Designates the begining of an HTML document.
<P>
<?DTD2HTML i >
Italic font (or slanted if italic unavailable).
<P>
<?DTD2HTML img >
The IMG element allows another document to be inserted inline.
The document is normally an icon or small graphic, etc. This
element is NOT intended for embedding other HTML text.
<p>
<strong>Example</strong>:
<pre>
<IMG SRC="http://foo.org.com/pics/pic.gif">
</pre>
<P>
<?DTD2HTML img* >
<P>
<?DTD2HTML img*src >
The value of this attribute is the URL of the document to be embedded.
Its syntax is the same as that of the HREF attribute of the
<a href="a.html">A</a>
tag. SRC is mandatory.
<P>
<?DTD2HTML img*align >
Take values TOP or MIDDLE or BOTTOM, defining
whether the tops or middles of bottoms of the graphics and
text should be aligned vertically.
<P>
<?DTD2HTML img*alt >
Optional alternative text as an alternative to the graphics
for display in text-only environments.
<P>
<?DTD2HTML isindex >
This element informs the reader that the document is an index
document. As well as reading it, the reader may use a keyword
search.
<P>
<?DTD2HTML kbd >
In an instruction manual, Text typed by a user.
<P>
<?DTD2HTML key >
<P>
<?DTD2HTML li >
A list item.
<P>
<?DTD2HTML link >
The LINK element occurs within the <A HREF="head.html">HEAD</A> element
of an HTML document.
It is used to indicate a relationship between the document and some
other object. A document may have any number of LINK elements.
<P>
<?DTD2HTML link* >
See <a href="a.attr.html">anchors attributes</a> for a description
of link's attributes.
<P>
<?DTD2HTML link*href >
<P>
<?DTD2HTML link*methods >
<P>
<?DTD2HTML link*name >
<P>
<?DTD2HTML link*rel >
<P>
<?DTD2HTML link*rev >
<P>
<?DTD2HTML link*title >
<P>
<?DTD2HTML link*urn >
<P>
<?DTD2HTML listing >
Example section (obselete).
<P>
<?DTD2HTML menu >
A list of smaller paragraphs. Typically one line per item, with a style
more compact than <A HREF="ul.html">UL</A>.
<P>
<?DTD2HTML menu* >
<P>
<?DTD2HTML menu*compact >
Suggests that a compact rendering be used.
<P>
<?DTD2HTML nextid >
A parameter used by editors to generate unique identifiers.
This tag takes a single attribute which is the number of the next
document-wide numeric identifier to be allocated of the form z123.
<P>
<?DTD2HTML nextid* >
<P>
<?DTD2HTML nextid*n >
Number of the next document.
<P>
<?DTD2HTML ol >
As <A HREF="ul.html">UL</A>, but the paragraphs are typically numbered in some
way to indicate the order as significant.
<P>
<?DTD2HTML ol* >
<P>
<?DTD2HTML ol*compact >
Suggests that a compact rendering be used.
<P>
<?DTD2HTML p >
The empty P element indicates a paragraph break.
<P>
<?DTD2HTML plaintext >
The empty PLAINTEXT tag terminates the HTML entity. What
follows is not SGML. In stead, there's an old HTTP convention
that what follows is an ASCII (MIME "text/plain") body.
<P>
<?DTD2HTML pre >
Section in fixed-width font for preformatted text.
<P>
<?DTD2HTML pre* >
<P>
<?DTD2HTML pre*width >
This attribute gives the maximum number of characters
which will occur on a line. It allows the presentation system
to select a suitable font and indentation. Where the WIDTH
attribute is not recognized, it is recommended that a width of
80 be assumed. Where WIDTH is supported, it is
recommended that at least widths of 40, 80 and 132
characters be presented optimally, with other widths being
rounded up.
<P>
<?DTD2HTML samp >
A sequence of literal characters.
<P>
<?DTD2HTML strong >
Stronger emphasis, typically bold.
<P>
<?DTD2HTML title >
The title of the document.
<P>
<?DTD2HTML tt >
Fixed-width typewriter font.
<P>
<?DTD2HTML u >
Underline.
<P>
<?DTD2HTML ul >
A list of multi-line paragraphs, typically separated by some
white space and/or marked by bullets, etc.
<P>
<?DTD2HTML ul* >
<P>
<?DTD2HTML ul*compact >
Suggests that a compact rendering be used.
<P>
<?DTD2HTML var >
A variable name.
<P>
<?DTD2HTML xmp >
Example section (obselete).
<P>
|