HTML Line break
HTML's <br>
tag makes a line break. It is an empty tag, as it has no closing tag and inserts
a
single line break in the text.
Syntax:
<br>
Example:
<h2>
HTML tutorial
</h2>
<p>
Hello,
<br>
welcome to this
<br>
HTML tutorial for beginners
</p>
Output
