coordinates in map html code example
Example 1: html mapping coordinates placing
<a href="shapemap.cgi">
<img src="images/shapes.jpg" width="375"
height="102" style="border: none;" ismap="ismap"/>
</a>
Example 2: html mapping coordinates placing
<map name="shapes" id="shapes">
<area shape="circle"
coords="58,50,40"
href="javascript:clicked_on('circle');"
title="Circle" alt="Circle"/>
<area shape="rect"
coords="136,11,227,89"
href="javascript:clicked_on('rectangle');"
title="Rectangle" alt="Rectangle"/>
<area shape="poly"
coords="309,13,358,89,257,89"
href="javascript:clicked_on('triangle');"
title="Triangle" alt="Triangle"/>
<area shape="default"
nohref="nohref" title="Default" alt="Default"/>
</map>
Example 3: html mapping coordinates placing
<form action="shapemap.cgi">
<input type="image" name="shapes_image"
src="images/shapes.jpg" width="375"
height="102" style="border: none;"/>
</form>