Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Image Maps</title>
5
</head>
6
<body>
7
8
<h2>Interactive Workstation Map</h2>
9
<img src="desk.jpg" alt="Developer Desk" usemap="#deskmap">
10
11
<map name="deskmap">
12
<area shape="rect" coords="34,44,270,350" alt="Monitor" href="monitor.html">
13
<area shape="circle" coords="337,300,44" alt="Coffee Cup" href="coffee.html">
14
</map>
15
16
</body>
17
</html>
