Line Break Tag(<br />) in HTML
- The <br /> tag defines line break tag.
- It gives a line break in the document
- There is no closing tag for this.
- Example: <br/>First <br />Second <br />Third
Source code | Output |
<br/>First <br />Second <br />Third | First Second Third |