Validation Tools
Why should I validate my HTML pages? is a question I hear quite often. From the WC3 Markup Validation Service:
"One of the important maxims of computer programming is: Be conservative in what you produce; be liberal in what you accept.
Browsers follow the second half of this maxim by accepting Web pages and trying to display them even if they're not legal HTML. Usually this means that the browser will try to make educated guesses about what you probably meant. The problem is that different browsers (or even different versions of the same browser) will make different guesses about the same illegal construct; worse, if your HTML is really pathological, the browser could get hopelessly confused and produce a mangled mess, or even crash.
That's why you want to follow the first half of the maxim by making sure your pages are legal HTML. The best way to do that is by running your documents through one or more HTML validators."
Help and FAQ for the Markup Validator A quick intro and help to get you started, with answers to Frequently Asked Questions. Read this first. This document has a lot of information on how the validator works, answers to frequent questions about "why did the validator say that...", as well as pointers to technical and policy documents.
WC3 Markup Validation Service
You can validate your page by typing in the url, or uploading the file from your local pc, or copying and pasting the code directly. Checking the different options will give you a different list. If you get errors, go through and fix them one by one until your page passes validation.

Click thumbnail to view larger image.
Tool: http://validator.w3.org/
W3C CSS Validation Service
Validates the style sheet for your site by typing in the url of the site or the style sheet. You can also validate by file upload or copying and pasting directly. You will either receive a list of errors/warnings or Congratulations, no errors found. If you have errors on the sheet, go through and correct them one by one. Revalidate until it passes.

Click thumbnail to view larger image.
Tool: http://jigsaw.w3.org/css-validator/
Common Validation Problems
Some of the most frequent errors the validation service finds is
- No DOCTYPE Declaration Found! A DOCTYPE Declaration is mandatory for most current markup languages and without one it is impossible to reliably validate a document. One should place a DOCTYPE declaration as the very first thing in an HTML document. Read more . . .
- No Character Encoding Found! An HTML document should be served along with its character encoding. Read more . . .
- The validator complains about "&" in my URLs!
- More common problems.
- Validation Error - no attribute "xmlns:v"
Page Valet
Page Valet is another markup validator for your use. http://valet.webthing.com/page/
Semantic Data Extractor
The Semantic Data Extractor Sees a Web page from a semantic point of view. Extracts such information as outline, description, languages used, etc.
Complete List of Web Accessibility Evaluation Tools
Complete List of Web Accessibility Evaluation Tools - Web accessibility evaluation tools are software programs or online services that help determine if a Web site meets accessibility guidelines. While Web accessibility evaluation tools can significantly reduce the time and effort to evaluate Web sites, no tool can automatically determine the accessibility of Web sites.
