totn HTML

HTML: <br> tag

This HTML tutorial explains how to use the HTML element called the <br> tag with syntax and examples.

Description

The HTML <br> tag defines a line break within text in the HTML document. This tag is also commonly referred to as the <br> element.

Syntax

In HTML, the syntax for the <br> tag is:

<body>
<p>The paragraph starts here<br>
and ends on the next line.</p>
</body>

or in XHTML, the syntax for the <br> tag is:

<head>
<p>The paragraph starts here<br />
and ends on the next line.</p>
</head>

Sample Output


Attributes

In addition to the Global Attributes, the following is a list of attributes that are specific to the <br> tag:

Attribute Description HTML Compatibility
clear Indicates where to begin the line after the break. Deprecated in HTML 4.01, Obsolete in HTML5

Note

  • The HTML <br> element is found within the <body> tag.
  • The <br> tag merely drops the text to the next line, producing less vertical white-space than if the <p> tag was closed at that point with </p>.

Browser Compatibility

The <br> tag has basic support with the following browsers:

  • Chrome
  • Android
  • Firefox (Gecko)
  • Firefox Mobile (Gecko)
  • Internet Explorer (IE)
  • Edge Mobile
  • Opera
  • Opera Mobile
  • Safari (WebKit)
  • Safari Mobile

Example

We will discuss the <br> tag below, exploring examples of how to use the <br> tag in HTML5, HTML 4.01 Transitional, XHTML 1.0 Transitional, XHTML 1.0 Strict, and XHTML 1.1.