Answers for "horizontal line with html css"

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

Browse Popular Code Answers by Language