Alt tags in graphic links

An example of an alt tag might be the description of a picture of the Mona Lisa on your web site.
Your alt tag, then, should look like this:
Alt=”Mona Lisa”
The alt tag usually falls at the end of the image tag. An image tag might look something like this:
<img width=”100”
height=”100”
src=”monalisa.jpg”
alt=”Mona Lisa”>
The image code breaks down like this:
<img width=”100”: The width (in pixels) of the image.
Height=”100”: The height (in pixels) of the image.
Src=”monalisa.jpg”: The source of the image file.
Alt=”Mona Lisa”>: The alternative text that’s displayed when the image is not.

One more note about alt tags: To be really effective, these tags should be used for every single image
on your web site. That could become an arduous task if your site hasn’t been properly coded to start
with (and depending on the number of images that you have on your site). However, the addition of
these tags should be advantageous to your SEO efforts as long as you don’t overstep the unspoken
boundaries of alt tags.