I am making an image map with 6 links
CODE
<html>
<head>
<title>navigation.html</title>
</head>
<body>
<body bgcolor="#000000">
<img src="images/navigation.jpg" width="140" height="300"
usemap ="navigation" />
<map id ="navigation"
name="navigation">
<area shape ="rect" coords ="0,0,140,60"
href ="links.html"
alt="Links" />
<area shape ="rect" coords ="0,60,140,60"
href ="lab4.html"
alt="Lab 4" />
<area shape ="rect" coords ="0,120,140,60"
href ="navigation.html"
alt="Nav" />
<area shape ="rect" coords ="0,180,140"
href ="main.html"
alt="Main" />
<area shape ="rect" coords ="0,240,140,30"
href ="noframes.html"
alt="No Frames" />
<area shape ="rect" coords ="0,270,140,30"
href ="http://www.w3schools.com/"
alt="W3Schools" />
</map>
</body>
</html>
The image is completely black with a blue border around it (for link) and the links show right except the bottom has a bit of a blank and it just shoes links, navigation, no frames, and w3schools. The others arent there.
The top 4 are 60 pixels tall and bottom 2 are 30, the whole image is 140 wide and 300 tall. Help is needed, thanks. Extra info-this is part of my frames page.
ADDITION:
can anyone help me with this?