programming-examples/css/Coords sets the coordinates of an area element.html
2019-11-15 12:59:38 +01:00

23 lines
742 B
HTML

<html>
<head><title>Coords Sets The Coordinates Of An Area Element</title></head>
<body>
<img src="http://www.happycodings.com/images/happy.gif"
alt="http://www.happycodings.com"
width=200
height=120 usemap="#myMap">
<map name="myMap">
<area shape="rect"
coords="0, 0, 120, 60"
href="http://www.happycodings.com">
<area shape="rect"
coords="100, 0, 200, 50"
href="http://www.happycodings.com">
<area shape="rect"
coords="200, 0, 400, 80"
href="http://www.happycodings.com">
<area shape="rect"
coords="0, 40, 120, 120"
href="http://www.happycodings.com">
</map>
</body>
</html>