2. HTML Specification
Level 0
The Paragraph element indicates a paragraph. The exact indentation, leading, etc. of a paragraph is not defined and may be a function of other tags, style sheets, etc.
Typically, paragraphs are surrounded by a vertical space of one line or half a line. This is typically not the case within the Address element and or is never the case within the Preformatted Text element. With some HTML user agents, the first line in a paragraph is indented.
Example of use:
<H1>This Heading Precedes the Paragraph</H1> <P>This is the text of the first paragraph. <P>This is the text of the second paragraph. Although you do not need to start paragraphs on new lines, maintaining this convention facilitates document maintenance. <P>This is the text of a third paragraph.
Level 0
The Preformatted Text element presents blocks of text in fixed-width font, and so is suitable for text that has been formatted on screen.
The <PRE> tag may be used with the optional WIDTH attribute, which is a Level 1 feature. The WIDTH attribute specifies the maximum number of characters for a line and allows the HTML user agent to select a suitable font and indentation. If the WIDTH attribute is not present, a width of 80 characters is assumed. Where the WIDTH attribute is supported, widths of 40, 80 and 132 characters should be presented optimally, with other widths being rounded up.
Within preformatted text:
<PRE WIDTH="80"> This is an example line. </PRE>
Level 0
The Line Break element specifies that a new line must be started at the given point. A new line indents the same as that of line-wrapped text.
Example of use:
<P> Pease porridge hot<BR> Pease porridge cold<BR> Pease porridge in the pot<BR> Nine days old.
Level 0
A Horizontal Rule element is a divider between sections of text such as a full width horizontal rule or equivalent graphic.
Example of use:
<HR> <ADDRESS>, CERN</ADDRESS> </BODY>
Generated with CERN WebMaker