HTMLParagraphs and Line Breaks

Use the <p> tag to define a paragraph in HTML. To break a line without starting a new paragraph, use the <br> tag (self-closing).

<p>This is a paragraph.</p>
<p>This is another paragraph.<br>This is a new line inside the same paragraph.</p>