Re: errors on http://www.wandleff.co.uk/

Andrew Wandless <andywandless@btinternet.com> writes:
> Error Line 2, Column 6: "html" is not a member of a group specified for any attribute               
>                                                                                                     
>      PUBLIC "-//W3C/DTD XHTML 1.0 Transitional//EN"                                                 

% fetch -qo- http://www.wandleff.co.uk/ | head -4
<DOCTYPE html
     PUBLIC "-//W3C/DTD XHTML 1.0 Transitional//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">

That's not a valid doctype declaration.  A valid doctype declaration
looks like this:

% fetch -qo- http://www.des.no/ | head -3
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'
 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>

DES
-- 
Dag-Erling Smørgrav - des@des.no

Received on Thursday, 29 October 2009 12:43:39 UTC