Solve a HTML Problem?

Hi, I'm taking an HTML class this semester and need some help creating a tooltip in an image map. Here's what I have so far:

<div>
<img src="diamond.jpg" alt="Diamond Health Club" usemap="#diamondmap" />
<map id="diamondmap" name="diamondmap">
<area shape="rect" coords="225, 7, 333, 40"
href="classes.htm" alt="Classes" title="View our classes." />
</div>

The textbook specifically states that the alt text needs to be "Classes" and the tooltip needs to be "View our classes." However, on the webpage all that comes up is "Classes". Can anyone help? Thanks!
 
Back
Top