MAP
Run
<!DOCTYPE html>
<html>
   <head>
      <title>HTML map tag</title>
      <style>
         body{
         margin-left: 250px;}
      </style>
   </head>
   <body>
      <h2>Example of HTML Map tag</h2>
      <img src="https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/tutorials/uploads/pictures/1585301257-71449.png" usemap="#python">
      <map name="python">
         <area shape="rect" coords="66,117,131,168" href="https://www.studytonight.com/python/">
      </map>
   </body>
</html>