|
Basics
HTML
Java
Colors
Frames
Tables
Fonts
Graphics
Links
Contact
| |
how do i make hyperlink images?
It
is very simple. Upload the image to your server, then copy and paste this code
into your editor, but add your own file name:
<a href="address you want image to link to"><img
src="your file name.gif" border="0"></a>
If you include the image width and height in the tag, your page will load faster
and it looks better. You can also include an ALT tag (with information about the
link).
To find out what the image height and width are, you right click on your image
and choose "properties." Unless you are using an older browser it
should tell you the dimensions of your image in pixels. You just need to change
the code a little (add your own info where you see bold text):
<a href="address you want image to link to"><img
src="your filename.gif" border="0"
width="000" height="000" alt="some
information about the link"></a>
If you do not include the tag <border="0"> you will see a border
around your image.
*Some Web hosts
require you to link to the image with your whole URL, if you're having problems
with images showing up try this:
<a href="address you want image to link to"><img
src="your webpage address/your filename.gif"></a> |