Tools, FAQ, Tutorials:
HTML 'hr' Tags/Elements
What Are "hr" Tags/Elements?
✍: FYIcenter.com
A "hr" element is a block level element that can be used directly as
a sub-element in the body element. You can use "hr" elements to specify
horizontal rulers.
Here are basic rules about "hr" elements:
Here is a good example of "hr" elements:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Horizontal Rulers</title> </head> <body> <p>Knock, knock Who's there? ...</p> <hr/> <p>Why did the turtle cross the road? ...</p> </body> </html>
If you save the above document as rulers.html, and view it with Internet Explorer, you will see that a horizontal line is displayed as shown below:
⇐ HTML 'h1' - Heading Tags/Elements
2017-08-03, ∼2019🔥, 0💬
Popular Posts:
What validation keywords I can use in JSON Schema to specifically validate JSON Array values? The cu...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...