+ 1
How can we give space in html
Pls tell me how can we give space in html that is visible when we run the code
6 Respostas
+ 4
There's no spacial tag for that. Just tap your space key ones.
<br /> tag creates a new line though.
+ 1
But how to give space
+ 1
post your code...to easily find your answer
0
In this I want to give space in lines but couldn't
0
You could put this into the html code:
|<span style="padding-left:106px;"></span>|<br>
|<span style="padding-left:106px;"></span>|<br>
|<span style="padding-left:106px;"></span>|<br>
...
or another option is using this code in css:
tab { display: inline-block; margin-left: 106px; }
and put this into the html code:
I<tab></tab>I<br>
I<tab></tab>I<br>
I<tab></tab>I<br>
....