You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Coords sets the coordinates...

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>