You've specified the id of header twice
Code:
<!--header-->
<div id = "header">
<map name = "header" id = "header">
<area alt = "" shape = "circle" coords = "54, 50, 43" href = "index.html" />
</map>
<img src = "images/header.jpg" width = "725" height = "130" alt = "Scot Riethmiller - Freelance Web Developer - Developing the World Wide Web One Page at a Time" usemap = "#header" border = "0" />
</div><!--end div header-->
And try removing all the spaces. More like this:
Code:
<!--header-->
<div id="header">
<map name="header" id="header">
<area alt="" shape="circle" coords="54, 50, 43" href="index.html" />
</map>
<img src="images/header.jpg" width="725" height="130" alt="Scot Riethmiller - Freelance Web Developer - Developing the World Wide Web One Page at a Time" usemap="#header" border="0" />
</div><!--end div header-->
Also, make sure you specify values.
Code:
width="725px" height="130px"
Bookmarks