how to break line in html code example
Example 1: how to break the line in html
<p> I'm about to break the line <br> right there </p>
Example 2: how to do a line break in html
<p>To force<br> line breaks<br> in a text,<br> use the br<br> element.</p>
Example 3: html line break
<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>
Example 4: br tag html
<br>
<h1>A line break</h1>
<br>
<h1>Another line break</h1>
Example 5: html line break
<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>