DEV 6.1 All images must have alt text to convey equivalent information

Examples

A decorative corner - alt should be NULL (quote quote - no space) NOT fancy corner etc.

Image of a symbol with alt text 'email us' not a description of the symbol. Image of a house with correct alt text Home page NOT picture of house

Poor: An important paragraph of text with alt text just = important notice. It should have the full text

If using images as bullet points then use a * as the alt text (but avoid doing this by coding them as lists!

Coding when a redundant text link is present

When in the same anchor <a> tag :
<a href="apples.html">

  <img src="applesicon.gif"
    alt=""> <!-- NULL alt text-->
  apples
</a>

When NOT in the same anchor <a> tag :

<td> <!-- <a> can't cross table cells -->
 <a href="apples.html">
   <img src="applesicon.gif"      alt="apples"> <!-- put alt in -->

 </a>
</td>
<td>
  <a href="apples.html">
    apples
  </a>
</td>