Quote:
Originally Posted by cvb724 I think this is what you mean. Code: <a href="http://www.google.com">
<img src="google.jpg" alt="Google" />
</a>
|
Almost... you need to add the
title attribute to the anchor.
Code:
<a href="http://www.google.com" title="Hover text here">
<img src="google.jpg" alt="Google" />
</a>