Set the Shape of the Area in HTML



Use the shape attribute to set the shape of the area in HTML. You can try to run the following code to implement shape attribute −

Example

<!DOCTYPE html>
<html>
   <head>
      <title>HTML shape attribute</title>
   </head>
   <body>
      <img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/>
      <!-- Create Mappings -->
      <map name = "html">
         <area shape = "circle" coords = "154,150,59" href = "about/about_team.htm"
         alt = "Team" target = "_self" />
      </map>
   </body>
</html>
Updated on: 2020-03-03T11:10:57+05:30

135 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements