- title attribute specifies extra information about an element.
- information is most often shown as a tooltip text when the mouse moves over the element.
- title attribute is often used with form and a elements, to provide information about input formats and link destinations. It is also a required attribute for the abbr and acronym elements.
title usage :
<"element" title="value">
title value :
- text : A tooltip text for an element.
title example:
| <html> <head> <title>Your website title</title> </head> <body> ...your <abbr title="webtemptutor">website </abbr>content... <p title="Free Web tutorials>...your website paragraph...</p> </body> </html> |
origin by : w3schools.com


0 comments:
Post a Comment