
Text Highlighting In HTML 5?
Text Highlighting in HTML 5, You Highlight the Text in a Paragraph heading and use it inside another tag. Add some Color Help Of CSS. So You can Use …
Read MoreThe HTML <hr>
element represents a horizontal Rule or a Create a Page break Between Tow Element on html page.
The <hr>
tag is an empty tag and it does not require an end tag.
<hr>
Attribute Value Description
<html>
<head>
<title>HTML hr tag</title>
</head>
<body>
<p>horizontal First Element after this paragraph.</p>
<hr>
<p>horizontal Second Element befor End here</p>
<hr>
<p>horizontal Three Element befor End here</p>
</body>
</html>
<html>
<head>
<title>HTML hr tag with attributes</title>
</head>
<body>
<p>horizontal First Normal Element</p>
<hr>
<p>horizontal Second Element with height of 20 pixels</p>
<hr size="20">
<p>horizontal Third Element with height of 30 pixels and noshade.</p>
<hr size="20" noshade>
</body>
</html>
<html>
<head>
<title>HTML hr Style</title>
</head>
<body>
<p>horizontal First Normal Element</p>
<hr style="height:30px">
<p>horizontal Second Element With Style</p>
<hr style="height:30%">
<p>horizontal third Element With Style</p>
<hr style="width:300px">
</body>
</html>
Text Highlighting in HTML 5, You Highlight the Text in a Paragraph heading and use it inside another tag. Add some Color Help Of CSS. So You can Use …
Read MoreThe HTML <p> element defines a paragraph. Use to tag create a new paragraph on a web page. It has an own </p> closing tag. This is …
Read More