HTML Title Attributes Code For Website - Learn About Website | DaddyFile

0

The title Attribute Explain

HTML paragraphs are defined with the <p> tag.
In this example, the <p> element has a title attribute. The value of the attribute is "About DaddyFile":


Html Code:

<!DOCTYPE html>
<html>
<body>

<h1>About DaddyFile</h1>

<p title="About DaddyFile">
Daddyfile is a Entertainment site.
It provides tutorials and references covering
many aspects of web programming,
including HTML, CSS, JavaScript, XML, SQL, PHP, ASP, learning/Knowledge, News Current Afair And More Categories.
</p>

<p><b>
If you move the mouse over the paragraph above,
the title will display as a tooltip.
</b></p>

</body>
</html>



Html Code Result:

About DaddyFile

DaddyFile is a Entertainment site. It provides tutorials and references covering many aspects of web programming, including HTML, CSS, JavaScript, XML, SQL, PHP, ASP,
learning/Knowledge, News Current Afair And More Categories. 
If you move the mouse over the paragraph above, the title will display as a tooltip.


Post a Comment

 
Top