HTML Tag Reference - HTML tag <br>








This <br> element adds a new line break to the web page.

Browser compatibility

<br> Yes Yes Yes Yes Yes

What's new in HTML5

None.

Global Attributes

The <br> tag supports the Global Attributes in HTML.

Event Attributes

The <br> tag supports the Event Attributes in HTML.

Default CSS Settings

None.





Example

A demo showing how to use br tag.

<html>
<body>
     <p>
          The p element.<br/>
          The br<br/> element adds a new line to the page.
     </p>
</body>
</html>

Click to view the demo