HTML BR Tag

The HTML BR tag is a self-closing tag that creates a line break within a paragraph of text. The BR tag stands for “line break”, and is used to insert a single line break between two lines of text.

The syntax for the BR tag is as follows:

<br>

When the BR tag is used, it creates a line break between the text that comes before it and the text that comes after it. This can be useful for formatting text in a way that makes it easier to read, or for separating different sections of text within a larger block of content.

The BR tag is commonly used in conjunction with other HTML tags, such as the P tag or the DIV tag, to create more complex layouts and structures within a webpage. For example, the following code creates two separate paragraphs of text with a line break between them:

<p>This is the first paragraph of text.</p>
<p>This is the second paragraph of text.</p>

When this code is rendered in a web browser, it appears as follows:

This is the first paragraph of text.
This is the second paragraph of text.

The BR tag can also be used within other HTML tags, such as the TD tag within a table. For example, the following code creates a table with two rows and two columns, with a line break between the text in the first column of the second row:

<table>
  <tr>
    <td>Row 1, Column 1</td>
    <td>Row 1, Column 2</td>
  </tr>
  <tr>
    <td>Row 2, Column 1<br>Line break within a table cell</td>
    <td>Row 2, Column 2</td>
  </tr>
</table>

When this code is rendered in a web browser, it appears as follows:

Row 1, Column 1  |  Row 1, Column 2
Row 2, Column 1
Line break within a table cell  |  Row 2, Column 2

Overall, the BR tag is a simple and useful tool for formatting text within a webpage. By inserting line breaks between lines of text, web developers can create more readable and organized content that is easier for users to scan and understand. However, it is important to use the BR tag sparingly and in conjunction with other HTML tags to create meaningful structure and content within a webpage.

Related Topic

<HR>

Reference

Wikipedia