img要素か、あるいは object要素を使いますが、それらの要素中に、usemap属性と、この要素中の name属性とを関連付けなければなりません。<img src="../images/mapsample.gif" width="300" height="382" alt="ImageMap" usemap="#banban"> <map name="banban"> <area shape="rect" alt="Index" coords="99,55,85,90" href="index.html"> <area shape="rect" alt="Prev" coords="32,60,45,80" href="prev.html"> <area shape="rect" alt="Next" coords="95,30,60,31" href="next.html"> <area shape="rect" alt="Home" coords="35,49,32,81" href="/index.html"> </map>
area要素の代わりに a要素を用いる場合には、必ずブロックレベル要素中に配置しなければなりません。