html how to make an image clickable only on certain sections

Solutions on MaxInterview for html how to make an image clickable only on certain sections by the best coders in the world

showing results for - "html how to make an image clickable only on certain sections"
Samia
16 Jul 2018
1<!DOCTYPE html>
2<html>
3   <head>
4      <title>HTML area Tag</title>
5   </head>
6
7   <body>
8      <img src = /images/usemap.gif alt = "usemap" usemap = "#lessons"/>
9      <map name = "lessons">
10         <area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27"
11            href = "/perl/index.htm" alt = "Perl Tutorial" target = "_blank" />
12         <area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial"
13            href = "/html/index.htm" target = "_blank" />
14         <area shape = "circle" coords = "73,168,32" alt = "PHP Tutorial"
15            href = "/php/index.htm" target = "_blank" />
16      </map>
17   </body>
18</html>