Re: validating www.alexanderworks.org

* Philip Pawley wrote:
>My pages validate as xhtml 1.0
>
>When I try to use the css validator on my html pages, I get this error 
>message:
>
>Target: http://www.alexanderworks.org/
>org.xml.sax.SAXException: Please, fix your system identifier (URI) in 
>the DOCTYPE rule.
>
>What's going on?

You have this XML declaration in your document:

<!DOCTYPE html 
     PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     "DTD/xhtml1-transitional.dtd">

But http://www.alexanderworks.org/DTD/xhtml1-transitional.dtd doesn't
exist. You better fix this and use
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd in your SYSTEM
identifier.
-- 
Björn Höhrmann { mailto:bjoern@hoehrmann.de } http://www.bjoernsworld.de
am Badedeich 7 } Telefon: +49(0)4667/981028 { http://bjoern.hoehrmann.de
25899 Dagebüll { PGP Pub. KeyID: 0xA4357E78 } http://www.learn.to/quote/

Received on Sunday, 10 June 2001 19:25:39 UTC