+ 1
What is the benefit of <br/> ?
8 Respostas
+ 5
alaa yeah it means blank space
check this simple code
https://code.sololearn.com/WimPt7y19LQc/?ref=app
+ 3
Using <br/> tag you can add a line break in your code.
+ 1
<br/> tag helps in creating a line break in Html
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p>mu name is ujjwal kumar</p></br>
<p>i am 13 years old</p>
</body>
</html>
Output
My name is ujjwal kumar
I am 13 years old
+ 1
ok but what i mean why it doesn't reflect it on the output that there's a break line ? is break line means a blank space?
+ 1
break line does not create a browser generated blank line.It just shifts the content to the next line.
+ 1
I think it does the same thing the ENTER key does in Microsoft word
0
thank you so much guys 🌠
0
i got it 🙏