Bill Kendrick <[EMAIL PROTECTED]> wrote in
news:[EMAIL PROTECTED]:

> For those who haven't noticed, I re-did the look-n-feel of the
> Tux Paint website.  It's far less cluttered, and hopefully
> easier for people to navigate.  It also auto-detects the
> language the user prefers (a browser setting, typically),

Very nice!

Though the DOCTYPE declaration is messed up:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//NN">

This should say '//EN', *never* '//NN'. Change it to:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd";>

To specifiy the language the Web page is written use the 'lang'
attribute on the 'html' element, e.g.

<html lang="nn">

Or use the 'Content-Language' HTTP header (or preferably both).

Also, you forgot to set the character encoding of the page. Add:

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

somewhere in the 'head' section.

-- 
Karl Ove Hufthammer
_______________________________________________
Tuxpaint-dev mailing list
[EMAIL PROTECTED]
http://tux4kids.net/mailman/listinfo/tuxpaint-dev

Reply via email to