How to use HTML horizontal lines (horizontal rules <hr>) to separate content in web page

1 Answer

0 votes
<!DOCTYPE html>
<html>
    <body>

        <h1>Text text text</h1>
        <p>Content</p>
        <hr>

        <h2>Text text text</h2>
        <p>Content</p>
        <hr>

        <h3>Text text text</h3>
        <p>Content</p>

    </body>
</html>

<!--
run:



-->

 



answered Dec 1, 2018 by avibootz
edited Dec 1, 2018 by avibootz
...