Skip to main content

Posts

Showing posts with the label HTML hr Tag

HTML hr Tag | Basic syntax of the hr tag - Example of the hr tag

HTML <hr> Tag: The `<hr>` tag in HTML is used to create a horizontal rule, also known as a horizontal line or a divider. It is a self-closing tag, meaning it doesn't have a closing tag. The `<hr>` tag is often used to separate content within a page or to indicate a change in topic or section. Here is the basic syntax of the `<hr>` tag: html <p>This is some text.</p> <hr> <p>This is more text after the horizontal rule.</p> Example: html <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <meta name="viewport" content="width=device-width, initial-scale=1.0">   <title>HTML hr Tag Example</title> </head> <body>   <h1>Document Title</h1>   <p>This is the first paragraph of text.</p>   <hr>   <p>This is the second paragraph of text, separated by a horizontal rule.</p> </body> ...