img element with usemap attribute pointing to map element with one area element

image (with alt="HTML5") with 2 area links ('google' and 'Yahoo')

HTML5 google Yahoo

Code

<img src="http://www.html5accessibility.com/images/HTML5_Logo.png" usemap="#poot" alt="HTML5">
<map name="poot">
<area shape="rect" alt="google" coords="19,24,112,129" href="http://google.com">
<area shape="rect" alt="Yahoo" coords="19,4,114,24" href="http://search.yahoo.com/">
</map>

Reference