+ 3
How to add tab spacing in HTML 5?
4 Antworten
+ 4
And space may help..
Better use css
+ 4
The character entity used to denote a non-breaking space which is a fixed space. This may be perceived as twice the space of a normal space. It is used to create a space in a line that cannot be broken by word wrap.
The   character entity used to denote an ‘en’ space which means half point size of the current font. This may be perceived as twice the space of a normal space.
The   character entity used to denote an ’em’ space which means equal to the point size of the current font. This may be perceived as four times the space of a normal space.
You can also use css for example:
Margin-left or margin-right properly
Or
tab properly
Thanks
https://code.sololearn.com/WNITlfv0GFAL/?ref=app
+ 2
Sethu Priya J
Instead of adding so many use margin in CSS.
+ 1
Okay..Thanks for the replies..