Answers for "how to add empty space in html"

14

leading spaces html

<!--   Add leading white space in front of text  -->

&nbsp;Hello World

<!--    Output:   ' Hello World'    -->
Posted by: Guest on June-11-2020
22

add space in html

<!-- vertical space -->
&nbsp;
&ensp;
&emsp;

<!--horizontal space -->
<br/>
Posted by: Guest on October-29-2020
0

no blank space html

You can use &nbsp; to make spaces.
Posted by: Guest on October-07-2021

Browse Popular Code Answers by Language