The element <P> is used to denote a paragraph break,
and is used whenever you wish to separate two blocks of
text as logical paragraphs.
In general you do not need paragraph marks around headings, list elements, ADDRESS elements, or BLOCKQUOTES: these elements manage their own spacing.
For example, the above text, including the heading, was marked up as follows:
<H1> 4.2 Marking Paragraphs with HTML </H1> <p> The element <P> is used to denote a paragraph break, and is used whenever you wish to separate two blocks of text as logical paragraphs. <p> In general you do <em>not</em> need paragraph marks around headings, list elements, <a href="address.html"> ADDRESS</a> elements, or <a href="blockquote.html"> BLOCKQUOTES</a>: these elements manage their own spacing. <p> For example, the above text, including the heading, was marked up as follows:
<p> be terminated by the tag
</p>. The form for a paragraph is then
<p> This is the text of the paragraph. Now we write lots of silly things, and then we want to end the paragraph, so we do so. </p>More formally this reflects the fact that the paragraph element is not `empty'. NOTE: Most HTML viewers (Mosaic, Lynx, etc) accept the
<p> ..... </p> pairings,
so you can use this form if you wish.
Other options new to HTML+ are:
<P ID="p1"> <P ALIGN=center> For more details look in the 'Paragraphs' mark-up section in the HTML+ Markup Format document.