Alt Tags
Your website graphics won't be visible to some users who use text-only clients such as lynx. Your website graphics won't be visible to Google or other search engines except as images that they may index into their image search and even then probably not if you do not include an alt tag.
The amount of CPU required for image recognition pretty much precludes search engines from being able to recognize images directly, however, they can read "alt" arguments in <img> tags easily.
So if your site uses graphical links for navigation, you also want to put equivalent text in an "alt" argument in the <img> tag so that when Google analyzes your page they can get the link text from that alt tag and know that it matches the content of what it is linked to.
This will also benefit users using text only clients who would otherwise be unable to navigate your site. Here is an example from this blog:
<a href="http://www.eskimo.com" onmouseover="img_on('excite')" onmouseout="img_off('excite')"><img height="133" width="200" border="0" name="excite" src="/images/excite2-off.jpg" alt="Excite Your Website with Eskimo North Hosting!"></a>
Incidentally, there is an easier way to make a mouseover affect using the css hover pseudoclass, but for the sake of demonstrating the use of the alt argument I used this example.
The amount of CPU required for image recognition pretty much precludes search engines from being able to recognize images directly, however, they can read "alt" arguments in <img> tags easily.
So if your site uses graphical links for navigation, you also want to put equivalent text in an "alt" argument in the <img> tag so that when Google analyzes your page they can get the link text from that alt tag and know that it matches the content of what it is linked to.
This will also benefit users using text only clients who would otherwise be unable to navigate your site. Here is an example from this blog:
<a href="http://www.eskimo.com" onmouseover="img_on('excite')" onmouseout="img_off('excite')"><img height="133" width="200" border="0" name="excite" src="/images/excite2-off.jpg" alt="Excite Your Website with Eskimo North Hosting!"></a>
Incidentally, there is an easier way to make a mouseover affect using the css hover pseudoclass, but for the sake of demonstrating the use of the alt argument I used this example.



