Home >Web Front-end >HTML Tutorial >Set coordinates of image map area in HTML?

Set coordinates of image map area in HTML?

WBOY
WBOYforward
2023-09-09 16:05:19800browse

Set coordinates of image map area in HTML?

Use the cords attribute in HTML to set the coordinates of the area in the HTML image map.

Example

You can try running the following code to implement the cords attribute -

<!DOCTYPE html>
<html>
   <head>
      <title>HTML coords attribute</title>
   </head>
   <body>
      <img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/>
      <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 coordinates of image map area 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