< All the HTML Tags >

<br></br>

Video Coming Soon...

  • br

    Tag Type

    inline

    Tag Category

    document structure

    Defines a line break

    Viewed

    1

    Examples

    1

Definition:

The HTML <br> tag is a self-closing tag used to insert a line break in text, allowing content to flow onto the next line.

It is often used in places where paragraph separation is not desired, such as in addresses or poems. The <br> tag does not require a closing tag and is simple to implement for formatting text.

While useful, overuse of ` <br>` for spacing can lead to poor accessibility; CSS is recommended for consistent layout control.

Attributes:

Global attributes (e.g., class, id, style)

Accessibility:

Coming Soon…

Default br Example:

Using the <br> tag to insert a line break.
<p>First line<br>Second line</p>

Default br Result:


Coming Soon…

Community Examples:

Coming Soon…
Coming Soon…