Você está na página 1de 4

PROGRAM:

Frame.html
<html>
<head><title>HOTSPOT</title></head>
<frameset cols="50%,50%">
<frame src="index.html" name="f1" id="f1">
<frame src="detail.html" name="f2" id="f2">
</frameset>

index.html
</html>
<html>
<head><title>Index</title></head>
<body>
<imgsrc="index.bmp" border="0" usemap="#spot">
<map name="spot" id="spot">
<area shape="circle" coords="420,426,2" alt="delhi" target="f2" href="delhi.html">
<area shape="circle" coords="211,873,2" alt="mumbai" target="f2"
href="mumbai.html">
<area shape="circle" coords="546,1177,2" alt="chennai" target="f2"
href="chennai.html">
<area shape="circle" coords="473,1065,2" alt="hyderabad" target="f2"
href="hyderabad.html">
<area shape="circle" coords="399,1266,2" alt="coimbatore" target="f2"
href="coimbatore.html">
<area shape="circle" coords="910,544,2" alt="kolkata" target="f2" href="kolkata.html">
<area shape="circle" coords="248,1056,2" alt="goa" target="f2" href="goa.html">
<area shape="circle" coords="444,1320,2" alt="madurai" target="f2"
href="madurai.html">
</map></img>
</body>

detail.html
</html>
<html>
<head><title>DETAIL</title></head>
<body>
<p>Welcome to HOTSPOT</p>
</body>
</html>

delhi.html
<html>
<head><title>DELHI</title></head>
<body>
<p>DELHI</p>
</body>
</html>

mumbai.html
<html>
<head><title>MUMBAI</title></head>
<body>
<p>MUMBAI</p>
</body>
</html>

chennai.html
<html>
<head><title>CHENNAI</title></head>
<body>
<p>CHENNAI</p>
</body>
</html>

hyderabad.html
<html>
<head><title>HYDERABAD</title></head>
<body>
<p>HYDERABAD</p>
</body>
</html>

coimbatore.html
<html>
<head><title>COIMBATORE</title></head>
<body>
<p>COIMBATORE</p>
</body>
</html>

kolkata.html
<html>
<head><title>KOLKATA</title></head>
<body>
<p>KOLKATA</p>
</body>
</html>

goa.html
<html>
<head><title>GOA</title></head>
<body>
<p>GOA</p>
</body>
</html>

madurai.html
<html>
<head><title>MADURAI</title></head>
<body>
<p>MADURAI</p>
</body>
</html>

OUTPUT:

Você também pode gostar