Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Experiment No.

2
Aim: WAP to Perform Image Mapping.

Code:
<!DOCTYPE html>
<html>
<body>
<p>
<img src="C:\image1.jpg" alt="" usemap="#myMap" />

<map name="myMap">

<area alt="Play store" title="Play store" href="https://play.google.com/store/games"


coords="131,50,130,163,233,109,232,102,137,49,131,50" shape="poly">

<area alt="BGMI" title="Battleground India"


href="https://www.battlegroundsmobileindia.com/" coords="281,276,441,370"
shape="rect">

<area alt="Youtube" title="Youtube" href="https://www.youtube.com/"


coords="456,83,575,169" shape="rect">

<area alt="Telegram" title="Telegram" href="https://telegram.org/" coords="193,551,66"


shape="circle">

<area alt="Whatsapp" title="Whatsapp" href="https://www.whatsapp.com/"


coords="428,459,622,649" shape="rect">

</map>
</p>
</body>
</html>
Output:

1) When We click on Play store icon:

You might also like