Menu

HTML TUTORIALS - HTML Image Links

HTML Image Links

ADVERTISEMENTS


<a href="http://htmltutorials.our24x7i.com//index.htm" target="_self" >
<img src="/images/home.gif" alt="Tutorials Point Home" border="0"/>
</a>

ADVERTISEMENTS

ADVERTISEMENTS

Server-Side Image Maps:


<a href="/cgi-bin/logo.map" target="_self" >
<img ismap src="/images/html.gif" 
        alt="HTML" border="0"/>
</a>


/cgi-bin/logo.map?50,30


<img src=/images/html.gif alt="HTML Map" border="0" usemap="#html"/>

<!-- Create  Mappings -->
<map name="html">
   <area shape="circle" 
            coords="154,150,59" href="link1.htm" alt="link 1"
			target="_self" />
   <area shape="poly" 
            coords="272,79,351,79,351,15,486,15,486,218,272,218,
                    292,166,292,136,270,76" alt="link 2"
			href="link2.htm" target="_self" />
   <area shape="rect" 
            coords="325,224,488,286" alt="link 3"
			href="link3.htm" target="_self" />
</map>