bug in sgml parser ?

i don't know if it may be a bug or not, but if I submit the following html 
page, then i get an error.
I have not checked if title head header is needed, but if I add a title before 
the css stylesheet it's valid, if i don't I get an error...

the error :
Below are the results of attempting to parse this document with an SGML 
parser. 
Error Line 36 column 7: end tag for "HEAD" which is not finished.
        </head>
 Most likely, You nested tags and closed them in the wrong order. For example 
<p><em>...</p> is not acceptable, as <em> must be closed before <p>. 
Acceptable nesting is: <p><em>...</em></p> 
 Another possibility is that you used an element which requires a child 
element that you did not include. Hence the parent element is "not finished", 
not complete. For instance, <head> generally requires a <title>, lists (ul, 
ol, dl) require list items (li, or dt, dd), and so on. 

you may check the webpage has not a head tag not finished as said by the 
parser.

Received on Monday, 20 March 2006 15:11:40 UTC