Line breaks (<br>)

0
5χλμ.

The <br> tag is used to insert a single line break in your HTML content. It's an empty element, meaning it doesn't have a closing tag.

Basic Usage

HTML
<p>This is a paragraph with a <br> line break.</p>

Example with Multiple Line Breaks

HTML
<p>This is a poem:<br>
  Line 1<br>
  Line 2<br>
  Line 3</p>

Important Points

  • Inline element: Unlike paragraphs, <br> is an inline element, meaning it doesn't start on a new line and doesn't take up the full width available.
  • Limited use: While <br> can be useful in specific cases, it's generally recommended to use paragraphs for better structure and readability.
  • Accessibility: Excessive use of <br> can make content difficult to read for users with visual impairments.

When to Use <br>

  • Poetry or addresses: Where preserving specific line breaks is important.
  • Short, non-paragraph content: For very short lines of text that don't warrant a full paragraph.

Example with Headings, Paragraphs, and Line Breaks

HTML
<!DOCTYPE html>
<html>
<head>
  <title>Headings, Paragraphs, and Line Breaks</title>
</head>
<body>

<h1>This is a Main Heading</h1>

<p>This is a paragraph with a <br> line break.</p>

<h2>Subheading</h2>

<p>This is a poem:<br>
  Line 1<br>
  Line 2</p>

</body>
</html>
Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Εκπαίδευση
Chinese Exclusion
από Modern American History 2024-08-02 16:41:02 0 6χλμ.
Computer Programming
HTML Table Borders: A Closer Look
HTML table borders are used to outline the individual cells and rows within a table, making it...
από HTML PROGRAMMING LANGUAGE 2024-09-06 01:25:50 0 6χλμ.
Technology
Ransomware Attacks
Ransomware is a type of malicious software (malware) that encrypts the victim’s files or...
από Olaim 2024-07-13 08:52:05 0 6χλμ.
Computer Programming
HTML forms
Here's a simple HTML form structure that includes a text input field, a submit button, and a...
από HTML PROGRAMMING LANGUAGE 2024-10-01 09:29:09 0 6χλμ.
Computer Programming
Quotations (<blockquote>, <q>)
Quotes are used to display text that is a direct quote from another source. In HTML, there are...
από HTML PROGRAMMING LANGUAGE 2024-08-29 02:08:24 0 5χλμ.