|
Adding alt/title to your linkThe alt tag that you see in images is the title tag in links. So to add a text box with text in it when mouseover, you just have to add the title="" attribute to your <a> tag. Here's how you do it:
<a href="http://www.mysite101.com" title="Please click to visit mysite101.com for help with your website">MySite101</a>
This is a great way to give more information to the viewer before they click on a link to the page. It will help them save time and it will also be less confusing for the viewer. Additionally, if you have a very long link, you can shorten the link and place the information in the title attribute so the user will still see the same information but the link will be shorter and take up less space. |