Adscend

Click Here



Click Here



Click Here

Sunday 8 September 2013

Tool Tip

HTML Tool Tip

Tool tip is a popup menu box appears when anybody hover on any link. The title attribute is used for creating tool tip.

Example: 1

<html>
<head>

</head>
<body>

<a href="http://www.aspell.org/" > Awesome Web Tutorials </a>

</body>
</html>

Output

Awesome Web Tutorials

If 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