imagemap
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>image map test</title>
</head>
<body>
<img src="../../planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="Sun" href="ptest.html" target="_blank"/>
<area shape="circle" coords="90,58,3" alt="Mercury" href="oltest.html" target="_blank"/>
<area shape="circle" coords="124,58,8" alt="Venus" href="dltest.html" target="_blank"/>
</map>
</body>
</html>