Home >Web Front-end >HTML Tutorial >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.
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!