BR TAG EXAMPLE
Run
<!DOCTYPE html>
<html>
<body>
    <h1>Example of line Break </h1>

    <h2>No need for line break in heading tag</h2>
    <p>This paragraph does not contain any line break.</p>

    <p>To force<br>line breaks<br>in a text,<br>use the <br><b>br</b> element.</p>

</body>
</html>