Click to See Complete Forum and Search --> : Picture linking to a site...


xx.Chloe.xx
07-07-2007, 12:49 PM
I'm kinda new to the whole HTML thing, and I can't find any info. that works. I want to be able to click on a picture and it to link to a URL. How do I do this?
xoxoxo

bolty2uk
07-07-2007, 01:37 PM
<a href="http://www.webdeveloper.com" target="_blank"><img src="image.jpg" alt="image" /></a>

Major Payne
07-08-2007, 02:25 AM
If you want a tooltip to show for your link add the code in red:

<a href="http://www.webdeveloper.com" title="www.webdeveloper.com" target="_blank"><img src="image.jpg" alt="image" /></a>

Firefox shows no tooltip with just an alt attribute added to image tag. If you have just an image and no link, just add the title="" attribute to image tag for the tooltip. The target="_blank" part is used with the transitional document type.

Ron

bassagar54
07-11-2007, 08:46 PM
<a href="yourpicture.gif"></a>

Major Payne
07-11-2007, 10:00 PM
<a href="yourpicture.gif"></a>Too simplistic, but will work.

Ron