Home  >  Article  >  Web Front-end  >  Set the shape of a region in HTML

Set the shape of a region in HTML

PHPz
PHPzforward
2023-09-03 18:25:111067browse

Set the shape of a region in HTML

Use the shape attribute to set the shape of a region in HTML. You can try running the following code to implement the shape property -

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>

The above is the detailed content of Set the shape of a region in HTML. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete