How do I turn an image or text into a link?

in HTML, just wrap whatever it is with an <a> tag. For example:

Code:
<a href="location.html">This is my link</a>

The href defines the location.
 
hey if you need to know anything more just go to w3schools.com, its a great source for html information, a lot of designers would be lost without it
 
And dont forget to take the border out since it will be linked
Code:
<a href="http://link.com"><img src="img.jpg" [B]border="0"[/B]></a>
 
<a herf="http://yourlink.com" target="_blank><img src="img.gif border="0" alt="Image Name">

target your can set..self also..this code is better for SEO
 
I have used both tizag.com and w3schools.com. I like w3schools.com better, but that's just my opinion. I tend to forget a lot of this stuff since I don't do it often. Those sites are a big help!
 
w3schools.com is really the best and its very simple to a newbie.

It's a great site can be a little overwhelming to someone very new to html but definitely a bookmark in my inventory.
 
There are sites that offer the changing of an image and turns it into a links.some popular ones ae already been said above, just browse the internet, you'll see hundreds of sites you can choose from.
 
Back
Top