Validating Web Pages |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<!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>
<ol><ul><table>
there must be a corresponding
closing tag.<b><i>Text</b><i>
<b><i>Text</i></b>
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:
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).
There are a few options:
I was not able to extract a character encoding labeling from any of the valid sources for such information. Without encoding information it is impossible to validate the document.Try using the Extended File Upload Interface. Choose appropriate values for the DTD (4.02 Transitional) and the character encoding.
"T"
for example
and saving that to a file with an html extension- say "T.html"
,
but, of course, that won't validate.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>The letter T</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <p>T</p> </body> </html>
<!--
and -->
around
bunches of code. This can help to figure out what right and wrong. 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
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