xxxxxxxxxx
<p>I want to <br> Break this line! </p>
<p>I want to <br><br> Break this line and want to give a line gap </p>
xxxxxxxxxx
<body>
<p>I want to <br> Break this line! </p>
<p>I want to <br><br> Break this line and want to give a line gap </p>
</body>
xxxxxxxxxx
<!-- an HTML line break is a <br> tag. -->
<p>This is a paragraph <br> this will be on the next line as a br tag
is there before it.
A br tag is an empty tag as it doesnt contain any content</p>
xxxxxxxxxx
<p>To force<br> line breaks<br> in a text,<br> use the br<br> element.</p>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>Line Break Example</title>
</head>
<body>
<h1>Break in HTML</h1>
<p>This is the first line.<br>
This is the second line.<br>
And this is the third line.</p>
</body>
</html>