HTML Images
<!DOCTYPE html> <html> <body> <img src="shapes.png" alt="Shapes" usemap="#shapes" width="200" height="200"> <map name="shapes"> <area shape="circle" coords="75,75,40" href="/circle"> <area shape="rect" coords="130,10,190,60" href="/square"> </map> </body> </html>