Improving accessibility is always a highly welcomed open-source contribution.
Location : team-members/index.html and copyrights/index.html
The Issue :
The social media links contain only a FontAwesome icon (e.g., <a href="..." ...><span class="fab fa-facebook-f"></span></a>). Because there is no actual text inside the anchor tag, screen readers used by visually impaired users will not be able to tell the user where the link goes.
How to Fix :
Add an aria-label to the anchor tags. For example: <a href="#" aria-label="Facebook" class="..."><span class="fab fa-facebook-f" aria-hidden="true"></span></a>
Improving accessibility is always a highly welcomed open-source contribution.
Location :
team-members/index.htmlandcopyrights/index.htmlThe Issue :
The social media links contain only a FontAwesome icon (e.g., <a href="..." ...><span class="fab fa-facebook-f"></span></a>). Because there is no actual text inside the anchor tag, screen readers used by visually impaired users will not be able to tell the user where the link goes.How to Fix :
Add an aria-label to the anchor tags. For example: <a href="#" aria-label="Facebook" class="..."><span class="fab fa-facebook-f" aria-hidden="true"></span></a>