Our last two Nuggets explained the importance of naming your images more effectively for greater SEO value. But what if you don't have the time, or the ability to name your images?
Built into standard HTML coding is the ability to include an "alt" tag and a "title" tag for every image. These are parameters that would be placed inside the HTML image tag. Here's what it looks like...
Generic HTML image tag:
<img src="IMG_0001.jpg" />
HTML image tag with alt and title parameters:
<img src="IMG_0001.jpg" alt="Zeevoog Diamond in a Diamond pendant" title="Zeevoog Diamond in a Diamond pendant" />
The alt/title parameters serve many very useful functions online, here are a few:
1. When you hover your mouse over the image, you will see the alt/title text in a popup bubble.
2. Screen readin...
VIEW FULL GOLD NUGGET