Having space in the same line in html
html
Solution
In your example, you may apply some CSS rules, e.g.:
span {
margin-left: 5em;
}
Or inline:
<strong>
New? Register here!
</strong>
<span style="margin-left: 5em;">
Register
</span>
Problem
I would like to have some space between the same line.. I know there are elements such as `<br>, <p>` and others. Instead of using these, I would like to add little space between the characters... Example Code: ``` <strong> New? Register here! </strong> <span> Register </span> ``` I would like to have some space between them. How can do this in HTML?