You are on page 1of 2

SUB:-INFORMATION TECHNOLOGY SCEINCE99

SKILL ORIENTED PRACTICAL NO:-07 TEXTBOOK PAGE NO 93


<html>
<head>
<title></title>
</head>
<body>
<h1 align=”center”Client Side Image Mappping</h1>
<img src="1.jpg" usemap="#abc"title ="this is client side image programming">
<map name="abc">
<area shape="rect" coords="55,48,279,191" title="this is rectangle" href="localpage.html">
<area shape="poly" coords="97,244,97,357,208,295,373,343,276,244" title="this is polygon" href="https://www.google.co.in/">
<area shape="circle" coords="516,300,216" title="this is circle" href="https://www.google.co.in/">
</map>
</body>
</html>
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
localpage.html
<HTML>
<HEAD>
<TITLE>LOCAL PAGE</TITLE>
<BODY BGCOLOR="BLUE">
<H1> <CENTER>THIS IS LOCAL PAGE</H1></CENTER>
</BODY>
</HTML>

You might also like