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

Set coordinates of image map area in HTML?

WBOY
Release: 2023-09-09 16:05:19
forward
788 people have browsed it

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>
Copy after login

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!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template