You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SVG spec has <title> tag to help accessibility with screen readers. Oftentimes web developers ignore accessibility, but adding this directly to these svg files would make sure this will always be accessible for blind people:
<ahref="#"><svg><title>Download on the app store</title> ...</svg></a>
Where as otherwise developers would need to do this:
<ahref="#" aria-label="Download on the app store"><svg> ...</svg></a>
Anyone who pays attention to accessibility will make screen readers ignore whole svg or title tag if they want to provide an alternative text (e.g. when doing <a href="#"><svg></svg> Facebook</a>).
Small addition but would make a huge improvement for lots of folks out there. :-)
The text was updated successfully, but these errors were encountered:
I would second that request. I still rely on this project daily so if the maintainer would give me access to contribute I would be happy to address this issue
SVG spec has
<title>
tag to help accessibility with screen readers. Oftentimes web developers ignore accessibility, but adding this directly to these svg files would make sure this will always be accessible for blind people:Where as otherwise developers would need to do this:
Anyone who pays attention to accessibility will make screen readers ignore whole
svg
ortitle
tag if they want to provide an alternative text (e.g. when doing<a href="#"><svg></svg> Facebook</a>
).Small addition but would make a huge improvement for lots of folks out there. :-)
The text was updated successfully, but these errors were encountered: