html tag for line code example
Example 1: how to break the line in html
<p> I'm about to break the line <br> right there </p>
Example 2: how to draw a horizontal line in javascript
var elem = document.createElement("hr");
elem.setAttribute("width", "100px");
document.body.appendChild(elem);