What is an HTML Line Break?
An HTML line break <br> is used to create a new line or start a new paragraph within a block of text.
When to Use the HTML Line Break?
Use the HTML line break when you want to insert a line break within a paragraph, start a new line without starting a new paragraph, or for single-line text, such as an address or poem.
How to Use the HTML Line Break?
To use the HTML line break, simply insert <br> at the point where you want the line break to occur.
Example Code
<p>This is a paragraph with a line break.<br>This is a new line within the same paragraph.</p>