HTML Image Map

In this POST, we are going to talk about setting up multiple links within one piece of image. Above shown images only single peace of images. But when we click on skype, ebay... it should navigate to respective hyper link. Your html code should contain below format. <html> <head> <title>Image Map</title> </head> <body> <img src="images/weblogo.jpg" alt="" usemap="#logos" /> <map name="logos"> <area shape="circle" coords="68,56,33" href="http://www.stumbleupon.com/" title="StumbleUpon" alt="StumbleUpon" /> <area shape="rect" coords="220,19,306,54" href="http://www.youtube.com/" title="Youtube" alt="Youtube" /> <area shape="rect" coords="367,32,516,84" href="http://www.google.com/" title="Google" alt="Goo...