Line breaks (<br>)

0
5KB

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
Nach Verein filtern
Read More
Technology
Importance of Business Information Systems in Modern Business
Business Information Systems (BIS) are vital to the functioning and success of modern businesses....
Von Business Information Systems (BIS) Course 2024-07-31 17:19:12 0 7KB
Ausbildung
SOLUTIONS TO ECONOMICS SEMINAR QUESTIONS
SOLUTIONS TO ECONOMICS SEMINAR QUESTIONS
Von Expedito 2024-08-26 05:02:07 0 5KB
Computer Programming
Italic Text in HTML: <i> and <em>
To make text italic in HTML, you can use either the <i> or <em> element. Both...
Von HTML PROGRAMMING LANGUAGE 2024-08-29 01:53:32 0 5KB
Technology
S5 KABS ICT RESOURCE 2023
S5 KABS ICT RESOURCE 2023
Von ICT TUTORIALS 2024-11-16 02:25:05 0 9KB
Business
Small Businesses: The Backbone of the Economy and Pillars of Community Growth
In the intricate fabric of our global economy, small businesses are the threads that hold it...
Von Olaim 2024-08-03 15:15:09 0 6KB