write a html code to display horizontal rules of various size
Answers
Answered by
7
Explanation:
The <hr> tag in HTML stands for horizontal rule and is used to insert a horizontal rule or a thematic break in an HTML page to divide or separate document sections. The <hr> tag is an empty tag and it does not require an end tag. Tag Attributes: The table given below describe the <hr> tag attributes: Attribute. Value.
Answered by
7
Explanation:
<html>
<head>
<title>my first webpage </title>
</head>
<body>
<HR >
<HR size = 16 pixels>
<HR size = 48 pixels>
<HR size = 72 pixels>
</body>
</html>
hope this helps you
Similar questions