Line breaks (<br>)

0
2K

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>
Search
Categories
Read More
Chemistry
UACE WAKISSHA CHEMISTRY PAPER 1 GUIDE 2014
UACE WAKISSHA CHEMISTRY PAPER 1 GUIDE 2024
By Advanced Level chemistry 2024-08-31 09:56:47 2 3K
Technology
Advantages of Linux
Linux is a popular choice for a variety of applications due to its numerous advantages. Here are...
By Tebtalks Access 2024-07-13 07:25:07 0 3K
Computer Programming
While Loop and For Loop
In Python, while and for loops are fundamental constructs for repeated execution of code blocks....
Chemistry
NEW CURRICULUM CHEMISTRY PRACTICAL SAMPLES
https://acrobat.adobe.com/id/urn:aaid:sc:EU:4838a935-5393-417a-a9b9-a4c21d6109cb
By Landus Mumbere Expedito 2024-07-18 19:33:23 0 3K
Physics
COLLECTION OF PHYSICS SCENARIOS
COLLECTION OF PHYSICS SCENARIOS
By Landus Mumbere Expedito 2024-08-13 19:19:44 0 4K