HTML Paragraphs

The HTML element <p> defines a category.

The section always starts on a new line, and browsers automatically add white space (margin) before and after the paragraph.

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

HTML Line Breaks

The HTML <br> element defines a line break.

Use <br> if you want to break a line (new line) without starting a new category:

Example
<p>This is<br>a paragraph<br>with line breaks.</p>