Hello, I'm a newbie to web development, trying to get this image map to work and have no idea where I'm going wrong. The image comes up fine but there are no "hotspots" highlighted, the links don't work, nor does the title pop up when you hover over the area.
<html>
<body>
<map name="Mixer">
<area shape="rect"
coords="612,129,681,150"
href="homepage.php"
title = "home"
alt="home button"/>
<area shape="rect"
coords="716,129,789,150"
href="music.php"
title = "music"
alt="music button"/>
<area shape="rect"
coords="834,129,896,150"
href="cart.php"
title = "cart"
alt="cart button"/>
<area shape="rect"
coords="906,129,975,150"
href="playlist.php"
title = "playlist"
alt="playlist button"/>
<area shape="rect"
coords="992,129,1066,150"
href="about.php"
title = "about"
alt="about button"/>
</map>
<img src = "Mixer.gif" border = "0" style= "position:absolute; top:100px; left:700px; width:472; height:238;"
alt = "mixer" align = "top" usemap="#Mixer" />
Many thanks!