Home > Article > Web Front-end > How to use html hr tag
html The hr tag is used to create a horizontal line in an HTML page. The horizontal rule (horizontal rule) can visually separate the document into various parts.
#html How to use hr tag?
Function: Create a horizontal line in the HTML page.
Description: The horizontal rule can visually separate the document into parts.
Note:
In HTML, the
html hr tag example
<html> <body> <p>hr 标签定义水平线:</p> <hr /> <p>这是段落。</p> <hr /> <p>这是段落。</p> <hr /> <p>这是段落。</p> </body> </html>
Effect:
The above is the detailed content of How to use html hr tag. For more information, please follow other related articles on the PHP Chinese website!