How do we create an image map in HTML?

WBOY
Release: 2023-08-28 15:45:05
forward
837 people have browsed it

How do we create an image map in HTML?

#To add an image map, use the tag in HTML. The HTML tag together with the How do we create an image map in HTML? tag defines the image map.

The following are the properties-

## tr>

NameExample
Properties

Value

Description

## unique_name

Define the unique name of the map marker

You can try Run the following code to learn how to create an image map in HTML-

<!DOCTYPE html>
<html>
   <head>
      <title>HTML map Tag</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>
Copy after login

The above is the detailed content of How do we create an image map 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!