Line breaks (<br>)

0
2كيلو بايت

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>
البحث
الأقسام
إقرأ المزيد
Chemistry
UACE CHEMISTRY PAPER 2 2024
UACE CHEMISTRY PAPER 2 2024
بواسطة Landus Mumbere Expedito 2024-08-09 19:53:41 0 3كيلو بايت
Business
Tips and Tricks of Business Automation
Automation drives innovation, addressing the needs of various industries. Choosing intelligent...
بواسطة ALAGAI AUGUSTEN 2024-07-20 18:37:16 0 3كيلو بايت
Health
ED Treatment with Cenforce 200: How Long It Works
Erectile dysfunction (ED) is a condition that affects millions of men worldwide, causing...
بواسطة Lucas Miller 2024-09-11 05:40:20 0 3كيلو بايت
Technology
HTML - The Structure of Web Pages
HTML, or HyperText Markup Language, is the standard language used to create and design web pages....
بواسطة ALAGAI AUGUSTEN 2024-07-25 19:30:38 0 5كيلو بايت
Technology
Media and Software Piracy
Media and software piracy refer to the unauthorized copying, distribution, and use of digital...
بواسطة ALAGAI AUGUSTEN 2024-07-13 07:52:56 0 3كيلو بايت