HTML Line Break

HTML element <br> defines a line break.

It is an empty element, which doesn’t need a closing tag and content.

This can be used to include breaks within a lengthy paragraph text.

Examples

<!doctype html>
<html lang="en">
<head>
</head>
<body>
    <h1>Line Break</h1>
    <p>
        Some paragraph text goes here.Some paragraph text goes here.<br>
        Some paragraph text goes here.Some paragraph text goes here.<br><br>
        Some paragraph text goes here.Some paragraph text goes here.<br><br><br>
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
        Some paragraph text goes here.Some paragraph text goes here.
    </p>
</body>
</html>

Overall

HTML line breaks are used to insert a line break within a lengthy, continuous text.