HTML
x
1
2
<html>
3
<head>
4
<title>Area and Map Tag</title>
5
</head>
6
<body>
7
<p> Below image mapped with map tag and area tag,</p>
8
<img src="http://kivabe.com/wp-content/uploads/2017/08/Earth-moon.jpg" usemap="#earthmoonmap">
9
<map name="earthmoonmap">
10
<area shape="circle" coords="142 142 125" alt="Earth" href="#">
11
<area shape="circle" coords="404 148 59" alt="Moon" href="#">
12
</map>
13
14
</body>
15
</html>
CSS
1
1
JavaScript
1
1
Output: