Ticker

6/recent/ticker-posts

Image map in html

 In image map one image is divided into three parts computer.jpg is divided into three parts first part is monitor when this part of image is clicked then navigate to the monitor.html.


<html>

<head>

</head>

<body>

<img src="computer.jpg" alt="computer component" usemap="#comp">

<map name="comp">

  <area shape="rect" coords="34,44,270,350" alt="monitor" href="monitor.html">

  <area shape="rect" coords="290,172,333,250" alt="mouse" href="mouse.html">

  <area shape="rect" coords="337,300,44" alt="keyboard" href="keyboard.html">

</map>

</body>

</html>

Post a Comment

0 Comments