HTML Tutorial
<br> (Break) is an empty HTML element used to create a line break.
<br><br><br> has no attributes.
<br><h1>My Heading</h1>
<p>This is a paragraph.<br>
This is a new line.</p>
Exploring the <br> tag
HTML:
<h1>Line Break Example</h1>
<p>This sentence has<br>
a line break.</p>
Output:
This sentence has a line break.