Horje

How to add HTML <area> coords x1,y1,x2,y2 Attribute

Specifies the coordinates of the top-left and bottom-right corner of the rectangle (shape="rect").

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The area coords attribute</h1>

<p>Click on the sun or on one of the planets to watch it closer:</p>

<img src="https://horje.com/avatar.png" width="145" height="126" alt="Planets" usemap="#planetmap">

<map id="planetmap" name="planetmap">
<area shape="rect" coords="x1,y1,x2,y2" alt="Sun" href="https://horje.com">
</map>

</body>
</html>

Output should be:

How to add HTML <area> coords x1,y1,x2,y2 Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin