1<!-- Create space in HTMl -->
2
3
4<!-- Example: -->
5<p> Hello World! </p>
1<!-- Add leading white space in front of text -->
2
3 Hello World
4
5<!-- Output: ' Hello World' -->
1 non-breaking space =
2< less than = <
3> greater than = >
4& ampersand = &
1
2 <b>How to insert spaces/tabs in text using HTML/CSS?</b>
3
4 <p>This is a regular space.</p>
5 <p>This is a   two spaces gap.</p>
6 <p>This is a   four spaces gap.</p>
7