HTML Tool Tip
Example: 1
<html>
<head>
</head>
<body>
<a href="http://www.aspell.org/" > Awesome Web Tutorials </a>
</body>
</html>
Output
Awesome Web TutorialsIf you put mouse on the hyperlink, there is no change. But if we add title attribute, tool tip will appear.
Example: 2
<html>
<head>
</head>
<body>
<a href="http://www.aspell.org/" title="Awesome Web Tutorials"> Awesome Web Tutorials </a>
</body>
</html>
Output
Awesome Web Tutorials
No comments:
Post a Comment