x
 
<html>
<head>
<title>HTML tutorial</title>
<style type="text/css">
img {
    border:2px groove white;
    width:300px; height:200px;
}
</style>
</head> 
<body>
<h4>This image has 3 regions to click on, find them:</h4>
<img src="../../../img/tutorials/imgmap_ex1.png" alt="Car buying instructions :)" usemap="#parts" />
<map name="parts">
<area shape="rect" coords="225,35,265,85" href="#" alt="Antenna" title="Found antenna!" />
<area shape="poly" coords="100,60,122,90,115,80,108,90,100,82,110,74,100,60" href="#" alt="Wheel" title="Found steering wheel!" />
<area shape="circle" coords="59,162,20" href="#" alt="Tire" title="Found front tire!" />
</map>
</body>
</html>