Answers for "how to add a horizontal line in html"

16

horizontal line html

<!-- code -->

<hr>

<!-- code -->
Posted by: Guest on February-18-2020
2

how to draw a horizontal line in javascript

var elem = document.createElement("hr");
elem.setAttribute("width", "100px");
document.body.appendChild(elem);
Posted by: Guest on May-20-2020
1

how to horizontal line in html

<hr> or <hr/>(in old tutorials)
Posted by: Guest on May-20-2021
1

how to add a horizontal line in html

We can add a horizontal line through the hr tag 
where you will put the hr tag it will create a hr tag 
it doesnt have a closing tag
<hr>
Posted by: Guest on June-05-2021
0

how to make a horizontal line in html

<!-- You can add a horizontal line in html by a <hr> tag.-->
<!Doctype Html>

<html>

  <head>
  
  	<meta charset="UTF-8">
    <title>HR Tag</title>
    
  </head>
  <body>
  
    <h1>Hello</h1>
    <hr>
  
  </body>
  
</html>


<hr>
Posted by: Guest on July-21-2021
-1

hr tag meaning

<hr><hr>
Posted by: Guest on June-09-2020

Code answers related to "how to add a horizontal line in html"

Browse Popular Code Answers by Language