horizontal rule html code example
Example 1: horizontal line html
<!-- code -->
<hr>
<!-- code -->
Example 2: how to draw a horizontal line in javascript
var elem = document.createElement("hr");
elem.setAttribute("width", "100px");
document.body.appendChild(elem);
Example 3: hr tag html
<hr> <!-- A horizontal line -->