Fix Accessibility Violations for Hyperlinks and Images on Website#1994
Open
huangkevin-apr wants to merge 1 commit intofacebook:mainfrom
Open
Fix Accessibility Violations for Hyperlinks and Images on Website#1994huangkevin-apr wants to merge 1 commit intofacebook:mainfrom
huangkevin-apr wants to merge 1 commit intofacebook:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR resolves 26 accessibility violations on website detected by the IBM Equal Access Accessibility Checker. The fixes address two critical WCAG compliance issues: missing accessible names for hyperlinks and missing alternative text for images.

Why is this important?
When an image contains important information, providing a text alternative makes the same information accessible through assistive technologies, such as a Braille display. When an image is decorative or redundant, providing correct markup allows assistive technologies to ignore or not repeat the information.
Problem
The IBM A11Y Checker identified the following violations:
Solution
Added Company Name Data
Extended the
poweredByImagesarray to include anameproperty for each company:Updated Image Rendering
Modified the rendering logic to include descriptive alt text:
Before:
After:
Testing
✅ All 26 accessibility violations resolved in IBM A11Y Checker
✅ Alt text accurately describes each logo
✅ No visual or functional changes to the UI
✅ Link purposes are now clearly communicated to assistive technologies
Fix Before

Fix After

Accessibility Impact
These changes ensure compliance with WCAG 2.1 Level A standards and improve the experience for:
Additional Info
The patch submitted in this PR was generated by A11YRepair, an automated Web Accessibility repair tool that I developed to address common accessibility violations in web applications. The generated fixes were manually reviewed and validated before submission.