The <br> tag is used to break the single line. The <br/> tag is empty tag which means it has no end tag.
Example of Code:
<body>
<p>This is before the line break<br/>
and this after the line break.</p>
</body>
Output:
This is before the line break
and this after the line break.
