Validating Web Pages


Getting your pages ready for validation

  1. Is there a Document Type Definition (a "DTD") above the <html> tag in your document?
    Here's one that is commonly used:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

  2. Is character-encoding properly specified in the documents head?
    Here's a sample that works for English and most European languages:
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

    Putting these together your structure might be something like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html> <head> <title>title goes here</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <p> ... text ... </p> </body> </html>
  3. Check your HTML:
    1. Are all tags closed that need to be?
      For tags such as <ol><ul><table> there must be a corresponding closing tag.
    2. Are tags properly nested?
      For example, this is wrong: <b><i>Text</b><i>
      The <b> tag opens first, but it closes first. No overlapping tags are allowed in valid HTML.
      Your broswer might show it the way you want it but it should be:
      <b><i>Text</i></b>
    3. What goes into what is important! <!-- Needs more to be added to later -->

The Validation process itself

The Validation form from W3C (the World Wide Web Consortium) allows you to validate all sorts of mark-up (HTML, XHTML, CSS, and so forth). You can use it to validate pages that have been put on the web, and pages that are still in your file space. Here we'll be using it to validate forms in your file space.

Here's what the Validation form looks like:

W3C Validation Page

Notice there are two buttons for Validation - "Validate URI" and "Validate File". You will be using "Validate File" button since the files you'll be checking will not be on the web. (Even if you've put them up in your "public_html" folder on Raptor, this file space is only viewable within a University of Kent log-in, so the W3C validator can't get to the page).

  1. Using the Browse button, find the file that you want check for Validity.
  2. When you've found the file you want, and it appears in textbox, click on Validate File.

Fixing what's wrong

There are a few options:


Interpreting error messages

W3C themselves state that

Interpreting the error messages isn't quite what you'd call easy. The error messages are generated in the context of a full SGML environment which demands a somewhat higher level of technical detail then your average HTML
http://validator.w3.org/docs/users.html


You write: What's wrong The validator says You might try
<p><b><i>Text</b></i></p> The bold tag starts. Inside it is an italic tag. The bold tag finishes, but the italic tag has not been closed. end tag for "I" omitted, but its declaration does not permit this
<p><b><i>T</b></i></p>
^
start tag was here
<p><b><i>T</b></i></p>
^
end tag for element "I" which is not open
<p><b><i>T</b></i></p>
Switch the order of the tags.

 

The validator says You might try
end tag for element "P" which is not open
</p>
Deleting the tag </p>

W3C provides a page to guide users to better understand the responses from the validator.
It can be very helpful, but it takes a bit of getting used to. I've used it to help me build the table above. Have a look, but, if it feels like information overload, work through the steps suggested above.

Bob Keim CO352 October 2003