Quote:
Originally Posted by steel_angel How do you set alt text. In other words what is the HTML for doing that as I do most of my coding by hand to learn how to do everything..
Thanks |
Hi,
Below I give you one example go through it.Sure it will help you.
alt is an attribute of IMG tag,these are very important. We can include a text description of the Image, so that if the Image fails to load for some reason, the visitor can get an idea of what it is.including keywords in your ALT text, as some search engines use them to rank pages.
Example for set alt text
<img src="car.gif" alt="Toyoto Car" />
here Toyoto Car is the key word if someone search Toyoto or Toyoto car image means your car image shown in the Google images.
Regards.