how to get rid of space in html code example
Example 1: add space in html
<!-- vertical space -->
 
 
<!--horizontal space -->
<br/>
Example 2: html ascii for space
<p>  Hi</p>
will translate to: " Hi"
<!-- vertical space -->
 
 
<!--horizontal space -->
<br/>
<p>  Hi</p>
will translate to: " Hi"