HTML <br> tag
HTML <br> tag : Definition
• The HTML <br> tag is used to give a single line break.
• The <br> tag is also used while writing articles or poems to bring your sentence in next line.
<br> tag example :
<!DOCTYPE html>
<html>
<head>
<title>HTML <blockquote> tag example</title>
</head>
<body>
<p>This is before the line break<br/>
and this after the line break.</p>
</body>
</html>
OUTPUT :
This is before the line break
and this after the line break.