View Full Version : Html image link?


DragonSeifer
13th July 2003, 05:19 AM
Whats the code to make an image that when clicked it leads to a URL?

I know it starts out like <IMG SRC=



What is it? ;)

Floris
13th July 2003, 05:28 AM
<a href="link.html"><img src="image.gif"></a>
in html


replace link.html with the full path, like http://www.site.com/dir/link.html
replace image.gif with the full path, like http://www.site.com/dir/image.gif

DragonSeifer
13th July 2003, 05:38 AM
Awesome! Thanx!

Floris
13th July 2003, 05:46 AM
No problem.