The <br> tag
- The <br> tag in HTML is used to insert a single line break. This means that any
text
following the <br> tag will start on the next line. It's like hitting the "Enter"
key
while typing to move to a new line.
- HTML br element requires start tag only.
- It can resie within inline as well as block level element.
- The <br> tag is an empty tag which means that it has no end tag.
<p>BR stands for Breake Line Element<p>
<br>
<p>This is Example of <br></p>
Output Of <br> tag
BR stands for Breake Line Element
This is Example of <br>