line in html css code example
Example 1: line through in css
x {
text-decoration: line-through;
}
Example 2: how to draw a horizontal line in javascript
var elem = document.createElement("hr");
elem.setAttribute("width", "100px");
document.body.appendChild(elem);