HTML Horizontal Rules Explain
The <hr> tag creates a horizontal line in an HTML page.
The hr element can be used to separate content.
Html Code:
<!DOCTYPE html>
<html>
<body>
<p>The hr tag defines a horizontal rule:</p>
<hr>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
</body>
</html>
Html Code Result:
The hr tag defines a horizontal rule:This is a paragraph.
This is a paragraph.
This is a paragraph.
Post a Comment