Posted by Jonathan N. Little on 09/25/01 11:59
richard wrote:
> www.1-small-world.com/index2.html
>
> Validator now shows 2 errors.
>
> 1) "character data not allowed here". Then where and how should it be
> placed?
>
> 2) end tag for "head" is unfinished.
> So what am I missing here?
>
This for both errors is this
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252" />
^^^
That is *XHTML* not *HTML* syntax for single tag elements. Should be:
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
Also do yourself a favor, start new projects with strict and not
transitional DOCTYPE.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Navigation:
[Reply to this message]
|