how to give space in paragraph in html code example
Example 1: add space in html
<!-- vertical space -->
 
 
<!--horizontal space -->
<br/>
Example 2: how to add spaces between text in html
p {
white-space: pre;
}
<!-- vertical space -->
 
 
<!--horizontal space -->
<br/>
p {
white-space: pre;
}