2. HTML Specification
The following elements may be included in the body of an HTML document:
Level 0
The Body element identifies the body component of an HTML document. Specifically, the body of a document may contain links, text, and formatting information within <BODY> and </BODY> tags.
Level 0
The Address element specifies such information as address, signature and authorship, often at the top or bottom of a document.
Typically, an Address is rendered in an italic typeface and may be indented. The Address element implies a paragraph break before and after.
Example of use:
<ADDRESS> Newsletter editor<BR> J.R. Brown<BR> JimquickPost News, Jumquick, CT 01234<BR> Tel (123) 456 7890 </ADDRESS>
Level 0
An anchor is a marked text that is the start and/or destination of a hypertext link. Anchor elements are defined by the <A> tag. The <A> tag accepts several attributes, but either the NAME or HREF attribute is required.
Attributes of the <A> tag:
See <A HREF="http://www.hal.com/">HaL</A>'s information for more details.
The <A HREF="document.html#glossary">glossary</A> defines terms used in this document.
<A NAME="coffee">Coffee</A> is an example of ...
...
An example of this is <A HREF="#coffee">coffee</A>.
<A NAME="drinks.html#coffee">
Level 0
The Blockquote element is used to contain text quoted from another source.
A typical rendering might be a slight extra left and right indent, and/or italic font. The Blockquote element causes a paragraph break, and typically provides space above and below the quote.
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.
Example of use:
I think the poem ends <BLOCKQUOTE> <P>Soft you now, the fair Ophelia. Nymph, in thy orisons, be all my sins remembered. </BLOCKQUOTE> but I am not sure.
Level 0
HTML defines six levels of heading. A Heading element implies all the font changes, paragraph breaks before and after, and white space necessary to render the heading.
The highest level of headings is H1, followed by H2 ... H6.
Example of use:
<H1>This is a heading</H1> Here is some text <H2>Second level heading</H2> Here is some more text.The rendering of headings is determined by the HTML user agent, but typical renderings are:
Generated with CERN WebMaker