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/Area Element - clickable ar...

18 lines
619 B
HTML

<html>
<head>
<title>Area Element Example</title>
</head>
<body>
<img src="http://www.happycodings.com/images/happy.gif"
alt=""
width="200"
height="120"
usemap="#myMap">
<map name="myMap">
<area shape="rect" coords="0, 0, 8, 50" href="http://www.happycodings.com">
<area shape="rect" coords="120, 0, 24, 50" href="http://www.happycodings.com">
<area shape="rect" coords="0, 40, 10, 25" href="http://www.happycodings.com">
<area shape="rect" coords="10, 25, 18, 16" href="http://www.happycodings.com">
</map>
</body>
</html>