1<!-- Create space in HTMl -->
2
3
4<!-- Example: -->
5<p> Hello World! </p>
1<!-- vertical space -->
2
3 
4 
5
6<!--horizontal space -->
7<br/>
1## HTML Character Codes
2#First code "Entity Name"
3#Second code "Entity Number"
4#You can use one of them
5space  
6< < <
7> > >
8& & &
9" " "
10' ' '
11¢ ¢ ¢
12£ £ £
13¥ ¥ ¥
14€ € €
15© © ©
16® ® ®
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