What is   in HTML?
In HTML, some characters are reserved, and in order to display such characters, we use character entities.
A character entity looks as follows:
&name_of_entity // 1
// or
&#number_of_entity // 2
- The first example uses entity names to display the reserved character.
- The second example uses entity numbers to display the character.
The   entity
 is a character entity that denotes a non-breaking or fixed space. is used to create a space that will not break into a new line by word wrap. is approximately the same as a regular space.
Syntax
<p>&nbsb;</p>
// or
<p> </p>
Code
Explanation
allows us to create multiple spaces in a row, something that we cannot do by using multiple spacebars in a row.
To create multiple spaces, add each time a space is required.