|
Okay, the image alt command is used to display text in the
case someone visits your page with a browser that can't show
images, or in the case they have image loading turned off to
so pages will load faster. If you have images as links, this
is a handy way to let people know what the image was supposed
to do. This is the alt command:
alt="something you want to write"
Place this inside the image tag:
<IMG SRC="image.gif" alt="something you want to write">
You place this command inside the image tag
for the image you want to display alternate text for. One image
I do this with
is my "next.jpg" image. I place
the text "next" in the alt command, and that is what will be
seen if someone sees the page with no images. Here is the example:
<IMG SRC="next.jpg" alt="next">
To see this work, you will probably have to
disable image loading and reload this page. You can then scroll
down to the bottom
right and see the word "next" where the image used to be. Of
course, if you have a really new browser, you can move your mouse
over the image and it will display the alt text right there for
you.
|