In HTML5, how do you skip 5 spaces in a <div>
? For example, how do you do this:
"Drumroll... [5 spaces] Something!"
<div>Drumroll... [5 spaces] Something!</div>
just outputs "Drumroll... Something!"
There does not seem to be any tags such as <indent>
that I have found to indent in the middle of a sentence.
     
works, but is there a more efficient way? Such as...
<skip 10px></skip>
Specifically, I am looking for the solution to insert exactly 1,000 spaces easily, for example.