Sachsentext

All "area" elements must have an "alt" attribute

All area elements within a map must have an "alt" attribute.

Example

Wrong

<map name="worldmap"> <area shape="rect" coords="0,0,82,126" href="north-america.htm"/> </map>

Right

<map name="worldmap"> <area shape="rect" coords="0,0,82,126" href="north-america.htm" alt="North America"/> </map>