html include spaces in text code example
Example 1: add spaces html
<!-- 1 space -->
  <!-- tab; 2 space -->
  <!-- tab; 4 space -->
Example 2: how to add spaces between text in html
p {
white-space: pre;
}
<!-- 1 space -->
  <!-- tab; 2 space -->
  <!-- tab; 4 space -->
p {
white-space: pre;
}