How to use Multiple Non-Breaking Spaces In HTML

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

Syntax:

  Or $emsp;

Example: To illustrate the implementation of Multiple Non-Breaking Spaces().

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&ensp;w3wiki
    </h1>
    <p>
        The above text has two space
        between to and w3wiki
    </p>

    <h3>Hello&emsp;Geeks</h3>
    <p>
        The above text has four space
        between Hello and Geeks
    </p>
</body>

</html>

Output:

&emsp Or $emsp; 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