HTML documents are divided into paragraphs.
HTML Paragraphs
Paragraphs are defined with the <p> tag.Example
<p>This is a paragraph</p>
<p>This is another paragraph</p>
<p>This is another paragraph</p>
Don't Forget the End Tag
Most browsers will display HTML correctly even if you forget the end tag:Example
<p>This is a paragraph
<p>This is another paragraph
<p>This is another paragraph
Note: Future version of HTML will not allow you to skip end tags.
HTML Line Breaks
Use the <br> tag if you want a line break (a new line) without starting a new paragraph:Example
<p>This is<br>a para<br>graph with line breaks</p>