+ 1
/br what is it?
5 ответов
+ 6
Line break.
For neat organisation off content.
+ 5
So yeah that's the example by Manikandan
+ 4
in html when we use p tag it wont consider white spaces. for example the below the code snippets produce same output.
<p>
i
love
html
</p>
<p>
i love html
</p>
both will produce output "i love html"
so if you use <br> tag then it will produce new line in p tag
<p>
i <br>love <br>html </p>
the above will produce output
i
love
html
+ 2
thanks
+ 2
line break it gives realability of the code and clarity understandment