Line Break Tag means
<br /> tag, <br /> is a HTML tag. How to use this tag in HTML webpage, the example mentioned below:
For Example - we write a paragraph
<p>This is the first paragraph and <br />This one is the second paragraph</p>
Result Look Like -
This is the first paragraph and
This one is the second paragraph
HTML BR Tag Syntax -
<html>
<body>
<p>This is the first paragraph and <br />This one is the second paragraph</p>
</body>
</html>
Basically, a BR tag used for the line break BUT we can use a BR tag in between body (open & close) tag.