Your best bet to figure out HTML is to find a page that does stuff you want... on the Menu of IE, click View-> Source. Then work your way through the HTML to find what you wnat it to do.
To get an image that is a hyperlink, type this:
[code:1]
<a href="http://www.samuelsweet.com"><img src="http://www.samuelsweet.com/images/Geeky.jpg"></a>
[/code:1]
That gives you my logo in the upper right corner. If you click on it, it takes you to my home page.
What the code means is
[code:1]
<a href="XXX">YYYY</a>
[/code:1]
Where XXX is the URL (or webpage you want to send someone to)
And YYY is What you want to display as a link.
Examples:
[code:1]
<a href="www.samuelsweet.com">The Nail Geek</a>
<a href="www.google.com">Search the web</a>
[/code:1]
Come out working like this:
The Nail Geek
Search the web
You dont have to use text as your link, you can use an image. The HTML for an image is:
[code:1]
<img src="XXX">
[/code:1]
Where XXX is the URL or webaddress of the image.
So, doing
[code:1]
<img src="http://www.samuelsweet.com/images/Geeky.jpg">
[/code:1]
gives you
If you are trying to get your email image to be a hyperlink for someone to email you... try this:
[code:1]
<a href="mailto:
[email protected]"><img src="http://www.freewebs.com/bee-enhanced/email10.gif"></a>
[/code:1]
Just make sure you change
[email protected] to your real address (just keep the mailto: as is)
why dont you post the link to the page that is screwy?
Also, try somewhere like www.webmonkey.com for lots of HTML help.