'area' defines the clickable area on a graphic or image
|
|
<html> <head> <title>area element example</title> </head> <body> <img src="http://www.navioo.com/style/logo.png" alt="" width="200" height="100" usemap="#myMap"> <map name="myMap"> <area shape="rect" coords="0, 0, 10, 50" href="http://www.navioo.com"> <area shape="rect" coords="100, 0, 20, 50" href="http://www.google.com"> <area shape="rect" coords="0, 50, 10, 10" href="http://www.demo2s.com"> <area shape="rect" coords="10, 50, 20, 10" href="http://www.google.com"> </map> </body> </html>
|
|
|
|
|
HTML code for linking to this page:
|
|