Table Maker3schools TranslateImage CompressorFavicon Icon GeneratorCrop & Resize Image
Apu
Apu September 21, 2022 . #Entity . #HowTo

HTML space between words on same line

If you are thinking to add a space between words on same line, then by using the   entity you can easily do that.

Suppose, you have a paragraph and you want to add one or more spaces between the words.

<p>This is a paragraph</p>

Use the &nbsp; html entity to add space between the words.

<p>This is a &nbsp; paragraph</p>

Output:

This is a   paragraph

If you want to add more space, then use the html entity more times.

<p>This is a &nbsp; &nbsp; &nbsp; &nbsp; paragraph</p>

Output:

This is a      paragraph.

save
listen
AI Answer
Write Your Answer
loading
back
View All