What is the correct html element for inserting a line break?
Answers
Answered by
3
<br>
Used at the place where you want to insert the line break.
Answered by
1
" <br> "
Break a line tag or <br> tag is that tag which is currently in use for line beak in a document created by HTML.
This can be use as
<html>
ADITYA <br>
Kumar
</html>
Output will be like :
ADITYA
Kumar
Note :
It has no attribute
Break a line tag or <br> tag is that tag which is currently in use for line beak in a document created by HTML.
This can be use as
<html>
ADITYA <br>
Kumar
</html>
Output will be like :
ADITYA
Kumar
Note :
It has no attribute
Similar questions