Image needs alternative text
aardrian opened this issue · 1 comments
aardrian commented
In the output code I see that the <img>
element has not alt
attribute. I see that the surrounding <a href>
has a title
attribute.
I suggest using the value of the title
attribute as the value of an alt
attribute on the <img>
.
For example, this:
<li><a href="…" target="_blank" title="Tweet"><img src="images/flat_web_icon_set/color/Twitter.png"></a></li>
Becomes this:
<li><a href="…" target="_blank" title="Tweet"><img src="images/flat_web_icon_set/color/Twitter.png" alt="Tweet"></a></li>
stefanbohacek commented
@aardrian Done, thanks for opening the issue!