Page 1 of 1

About insert link in to images ???

Posted: Wed Sep 09, 2009 12:41 pm
by btgvnws
Hi all !
How to insert link in to images of code HTML (not use software) ?
Thanks !

Re: About insert link in to images ???

Posted: Thu Sep 10, 2009 6:19 am
by echophp
What do you mean?

Re: About insert link in to images ???

Posted: Thu Sep 10, 2009 1:26 pm
by btgvnws
Ex: I insert www.echophp.com banner in to my site, when guest or mem click logo, link url go to echophp.com's page. I has use <a href="link"> before tag <img....> but logo show border. how to insert logo the same http://www.echophp.com/featured_clients.html

Re: About insert link in to images ???

Posted: Fri Sep 11, 2009 10:17 am
by echophp
Try to add the attribute bellow to remove the border

Code: Select all

border="0"
Hope it helps.

Re: About insert link in to images ???

Posted: Sat Sep 12, 2009 2:10 pm
by btgvnws
Ok. Thanks admin so much !

Re: About insert link in to images ???

Posted: Fri Mar 26, 2010 5:22 am
by marc8358
Sorry,As a new programmer i can not say how to insert link to an images.

Re: About insert link in to images ???

Posted: Mon Apr 05, 2010 2:32 pm
by hernandez9039
Really wonderful explanation! You've explained the topic superb. Thank you very much for sharing.

Re: About insert link in to images ???

Posted: Tue Apr 27, 2010 10:27 am
by henderson791
Fantastic!!! thanks a lot

Re: About insert link in to images ???

Posted: Fri May 28, 2010 3:27 pm
by sshayndell12
Well, that's good, but what's with the border around the image? Well, the border just seems to be added by default on most browsers. To get rid of it, add this command to the image tag:

border="0"

Here is an example:

<a href="http://www.newbusinessdirection.co.uk/">
<img src="next.jpg" border="0">
</a>

Re: About insert link in to images ???

Posted: Wed Jun 23, 2010 11:28 am
by dillan598
<HTML>
<HEAD>
<TITLE>this is just a test</TITLE>
</HEAD>
<BODY>
<a href="whateverpage.htm"><img src="picturelink.gif" alt="hello" /></a>
</BODY>
</HTML>

Re: About insert link in to images ???

Posted: Thu Jul 15, 2010 4:23 pm
by williams8899
This way you can insert link in to images.
<HTML>
<HEAD>
<TITLE>this is just a test</TITLE>
</HEAD>
<BODY>
<a href="whateverpage.htm"><img src="picturelink.gif" alt="hello" /></a>
</BODY>
</HTML>