Chapter 4: Paragraphs

Tag Meaning
<p> Defines a paragraph
<br> Inserts a single line break
<pre> Defines pre-formatted text

Section 4.1: HTML Paragraphs

The HTML <p> element defines a paragraph:

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
    

Display

For example:

<p>This is another paragraph, extra spaces will be removed by browsers</p>