1var elem = document.createElement("hr");
2elem.setAttribute("width", "100px");
3document.body.appendChild(elem);
1We can add a horizontal line through the hr tag
2where you will put the hr tag it will create a hr tag
3it doesnt have a closing tag
4<hr>
1<!-- You can add a horizontal line in html by a <hr> tag.-->
2<!Doctype Html>
3
4<html>
5
6 <head>
7
8 <meta charset="UTF-8">
9 <title>HR Tag</title>
10
11 </head>
12 <body>
13
14 <h1>Hello</h1>
15 <hr>
16
17 </body>
18
19</html>
20
21
22<hr>