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
 
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.<p>&nbsb;</p>
// or
<p> </p>
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.