1<!-- An image map, with clickable areas: -->
2
3<img src="workplace.jpg" alt="Workplace" usemap="#workmap" width="400" height="379">
4
5<map name="workmap">
6 <area shape="rect" coords="34,44,270,350" alt="Computer" href="computer.htm">
7 <area shape="rect" coords="290,172,333,250" alt="Phone" href="phone.htm">
8 <area shape="circle" coords="337,300,44" alt="Cup of coffee" href="coffee.htm">
9</map>