Paragraph tags delineate paragraphs. Browsers typically render a blank line between paragraphs. This section of this document illustrates the need to include paragraph tags in your HTML sources. If you do not include <P> tags in your documents, your document will appear as one long paragraph (perhaps with some breaks if you use other elements such as lists or headers). Although there is a blank line before this sentence in the HTML source, there is no P tag, so the browser will not recognize the start of a new paragraph. It should appear as one long paragraph in your browser. In HTML 2, there is no requirement to close a P tag. However, it is good practice to do so since later versions of HTML include extra attributes for the P tag (such as ALIGN) that will work more cleanly if P tags are closed.
Here are the same three paragraphs, but with the P tag at the beginning of each one.

Paragraph tags delineate paragraphs. Browsers typically render a blank line between paragraphs. This section of this document illustrates the need to include paragraph tags in your HTML sources. If you do not include <P> tags in your documents, your document will appear as one long paragraph (perhaps with some breaks if you use other elements such as lists or headers).

Although there is a blank line before this sentence in the HTML source, there is no P tag, so the browser will not recognize the start of a new paragraph. It should appear as one long paragraph in your browser.

In HTML 2, there is no requirement to close a P tag. However, it is good practice to do so since later versions of HTML include extra attributes for the P tag (such as ALIGN) that will work more cleanly if P tags are closed.


Using the /P tag may cause an extra blank line to be inserted.

There is no </P> at the end of this paragraph.


There is a </P> at the end of this paragraph.