<br>

TextSelf-closing

Produces a line break in text. Used for addresses, poems, or other content where line breaks are semantically meaningful.

Example

<p>Line one<br>
Line two<br>
Line three</p>

About the <br> Element

The <br> HTML element belongs to the Text category of HTML elements. Produces a line break in text. Used for addresses, poems, or other content where line breaks are semantically meaningful. Understanding when and how to use this element is essential for building well-structured, accessible, and SEO-friendly web pages.

As a void (self-closing) element, <br> does not have a closing tag. It is written as <br> or <br /> in XHTML syntax. This element is part of the current HTML Living Standard and is supported in all modern browsers including Chrome, Firefox, Safari, and Edge.

Proper use of semantic HTML elements like <br> improves document structure, helps screen readers interpret content correctly, and provides signals to search engines about the purpose of different sections of your page. This leads to better accessibility scores, improved SEO rankings, and more maintainable code.

Related Elements