How to use Break Tag In HTML

The <br> tag in HTML is an empty, self-closing tag that represents a line break or newline within text.

Syntax:

<br>

Example: To illustrate the implementation of Break Tag.

HTML
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, 
                   initial-scale=1.0">
    <title>Non-Breaking Space</title>
</head>

<body>
    <h1>
        Welcome to <br>
        w3wiki
    </h1>
</body>

</html>

Output:

Break tag in HTML

5 Easy Ways to Insert Spaces in HTML

Inserting spaces provides developers with greater control over the spacing between text, elements, and paragraphs, aiding in the efficient management of content layout. Effective spacing enhances text readability, facilitating user comprehension and engagement with the content.

There are five easy ways to insert spaces in HTML which are as follows:

Table of Content

  • Using Non-Breaking Space
  • Using Multiple Non-Breaking Spaces
  • Using Preformatted Text Tag
  • Using Break Tag
  • Using Paragraph Tag

Similar Reads

Using Non-Breaking Space

The abbreviation of   is a Non-Breaking Space entity used in HTML to insert a space between characters that prevents line breaks....

Using Multiple Non-Breaking Spaces

We can achieve multiple non-breaking spaces in different ways including  ,  , and  ....

Using Preformatted Text Tag

The Preformatted Text

 tag is used to display the text exactly as it is defined in the HTML document, whitespace, and line breaks are rendered the same....
													

Using Break Tag

The
tag in HTML is an empty, self-closing tag that represents a line break or newline within text....

Using Paragraph Tag

The

tag in HTML is used to separate and structure the text content into paragraphs, providing clear visual separation between different sections of text....

Contact Us