Answers for "css horizontal line div"

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