<hr>标记表示HTML中的水平线。它在HTML页面中分隔内容。请记住<hr>标签没有结束标签。它被添加到HTML页面的<body>…<body>标记中。
您可以尝试运行以下代码向HTML页面添加水平线
<!DOCTYPE html> <html> <head> <title>HTML Horizontal Rule</title> </head> <body> <p>The content of the document gets added here.</p> <hr> <p>Add other sections here.</p> </body> </html>