HR - HORIZONTAL RULE EXAMPLE
Run
<!doctype html>
<htmL>
    <head>
        <title>
            HR - Horizontal Rule
        </title>
    </head>
    <body>
        <div>The first line</div>
        <hr/>
        <div>The second line</div>
        <hr size="20" style="background-color:orange"/>
        <div>The Third Line</div>
    </body>
</htmL>