How can we give space in html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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

24th Sep 2019, 11:23 AM
kunal kourav
6 Answers
+ 4
There's no spacial tag for that. Just tap your space key ones. <br /> tag creates a new line though.
24th Sep 2019, 11:33 AM
Jella
Jella - avatar
+ 1
But how to give space
24th Sep 2019, 2:50 PM
kunal kourav
+ 1
post your code...to easily find your answer
24th Sep 2019, 5:53 PM
Shubham Sharma
Shubham Sharma - avatar
25th Sep 2019, 10:56 AM
kunal kourav
0
In this I want to give space in lines but couldn't
25th Sep 2019, 10:57 AM
kunal kourav
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> ....
25th Sep 2019, 6:45 PM
CodeX
CodeX - avatar