HTML <br> Tag
- The HTML
<br>
tag is used to give a line break on a web page. - It is a self-closing tag, which means that it does not require a closing tag.
<br>
tag is used to give a line break on a web page.<!DOCTYPE html>
<html>
<head>
<title>additionalsheet</title>
</head>
<body>
<p>This is a paragraph.<br>
This is a new line in the same paragraph.</p>
</body>
</html>
<br>
tag.