InterviewSolution
Saved Bookmarks
| 1. |
Define Image Map? |
|
Answer» IMAGE Map lets a developer map/LINK different parts of images with the different web pages. It can be achieved by the <map> tag in HTML5, using which we can link images with CLICKABLE areas. <img SRC=”image_url” , usemap=”#workspace” /><map name=”workspace”> <area SHAPE=”rect” coords=”34, 44, 270, 350” , href=”xyz.html” /> <area shape=”rect” coords=”10, 120, 250, 360” , href=”xyz.html” /></map> |
|