line tag in html code example
Example 1: how to draw a horizontal line in javascript
var elem = document.createElement("hr");
elem.setAttribute("width", "100px");
document.body.appendChild(elem);
Example 2: what does in html mean
HTML is a language for describing web pages.....
CSS defines how to display HTML elements.....