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>
Pesquisar
Categorias
Leia mais
Educação
Immigration timeline 1849-1924
1849: America’s first anti-immigrant political party, the Know-Nothing...
Por Modern American History 2024-08-02 16:41:54 0 6KB
Technology
POSSIBLE CHALLENGES FACED WHEN USING THE NETWORKS
Using a computer network presents several challenges that can impact performance, security, and...
Por Olaim 2024-07-17 17:31:43 0 6KB
Technology
Information Systems and Business Strategy
Information Systems (IS): These are integrated sets of components for collecting, storing,...
Por Business Information Systems (BIS) Course 2024-08-01 17:03:22 0 7KB
Technology
Introduction to Linux: Hardware Components
Linux is a versatile and powerful operating system that can run on a wide variety of hardware....
Por tebtalks 2024-07-13 07:13:37 0 5KB
Technology
How Technology is Reshaping Our World
From Smart Homes to Smart Cities: Technology is Reshaping Our World. What Tech Innovation Excites...
Por Olaim 2024-07-23 17:35:18 0 6KB