insert horizont...LOGIN

insert horizontal line

This example demonstrates:

How to insert a horizontal line.

Example analysis:

##<hr> tag creates a horizontal line in the HTML page.

Horizontal rule can visually separate a document into parts. Next Section

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(www.php.cn)</title> </head> <body> <p>hr 标签定义水平线:</p> <hr /> <p>这是第一段。</p> <hr /> <p>这是第二段。</p> <hr /> <p>这是第三段。</p> </body> </html>
submitReset Code
ChapterCourseware