How to do it with CSS
You can simply wrap the word you want to space with a span tag and use CSS padding to space it a bit as in:
"My name is Ayobami
.two-spaces {
padding-left: 5px;
}
You can add padding size you want ( greate or lesser than 5px).
b:line-breaking space.
Whenever you want to move a text to the next line in HTML, you can just tag before the text. For example, if you want "Ayobami" in the text below to go to the next line, we just have to add
before it as in:
HTML: "My name is Ayobami".
Result: " My name is
Ayobami" (Ayobami is now in another line).
That is it. Goodluck!