How to add space between text in html

I AM A LEARNER
How to add space between text in html
There are two ways to get space between text in html by the help of entity
1) write like these &nonbreakingspace;
 
<H1>coding   hindi</H1>

<H1>coding hindi</H1>

you can also write like this
2) write like this
<H1>coding   hindi</H1>



