- From: olivier Thereaux <ot@w3.org>
- Date: Mon, 28 Nov 2005 15:07:54 -0500
- To: Ron Stevens <ron@ronkstevens.com>
- Cc: <www-validator@w3.org>
Hi Ron,
On 27 Nov 2005, at 18:59, Ron Stevens wrote:
> My !DOCTYPE is:
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "DTD/xhtml1-transitional.dtd">
> Is there something I am not doing correctly to make this valid?
It is valid (because the validator knows the FPI "-//W3C//DTD XHTML
1.0 Transitional//EN" and does not need to dereference the System
Identifier, but the system identifier (http://www.ddytalk.com/DTD/
xhtml1-transitional.dtd) which is indeed 404 not found.
Using the following DOCTYPE will fix the issue:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Cheers,
olivier
--
olivier Thereaux - W3C - http://www.w3.org/People/olivier/
W3C Open Source Software: http://www.w3.org/Status
Received on Monday, 28 November 2005 20:08:17 UTC