XHTML 1.0 Recommendation

As noted on A List Apart a little while back
(http://www.alistapart.com/stories/doctype/), the doctypes presented on the
XHTML Recommendation won't work off the W3 server -- they use site-specific
addresses for the DTD file: 
<!DOCTYPE html 
     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     "DTD/xhtml1-strict.dtd">
is the suggestion given for a strictly conforming file.  Please correct these to
the 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
for the strict DTD, and similar, so that developers can have their sites not
only validate on the W3 server, but will work off the W3 servers as well.

Thank you
Jonathon Isaac Swiderski
Ann Arbor, Michigan, USA

-- 
Jonathon Isaac Swiderski       jswiders@cs.oberlin.edu
cs.oberlin.edu/~jswiders \\ members.evolt.org/jswiders

Received on Sunday, 16 June 2002 21:52:59 UTC