Image Validator
Check if there are image tag with missing Alt or an empty Alt.
-
missing alt (Bad!) -
empty alt or title (Bad!) -
Good!
Accessibility CSS Validator, is a tool for finding HTML accessibility errors and warnings on web pages via advanced capabilities of CSS selectors.*
Very easy, just add the accessibility.css to your css folder project, + the following line of code to your head element, and your good to go!
Refresh your page, and now you can see all the issues that the CSS Accessibility Validator finds.
rel="stylesheet" type="text/css" href="css/accessibility.css" media="screen"
The tool checks three levels of Validation: Errors, Warnings and Recommended.
Notice: the tool check only stuff we can catch via CSS only.
Error Accessibility Validation, are the most importent issues, that you need to put attention.
Check if there are image tag with missing Alt or an empty Alt.
Check for links with no text, no ID(anchors) or title attribute.
Check for empty header tag with no attribute title.
Check Validation of input with no-placeholder.
Check existing of flash or iframe HTML tags.
Check Existing of Inline Styles on HTML tags.