* Rachel Mawhood wrote:
>Validating the html on a site built this week, and the only remaining 
>uncorrected error is to do with the doctype.  I don't understand the 
>instruction: I tried putting in the line the validator says is 
>missing but that produced a new error.
>
>At the moment I have
>
><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
>
>If I have to add
>
><html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">

You currently have

  <html>

but you have to use

  <html xmlns="http://www.w3.org/1999/xhtml";>

instead.
-- 
Björn Höhrmann · mailto:[EMAIL PROTECTED] · http://bjoern.hoehrmann.de
Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de
68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/ 
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to