jonnnnnnnnnie
jonnnnnnnnnie

Reputation: 1239

w3c validator invalid error

What does it mean when it says:

"Error Line 237, Column 6: document type does not allow element "BODY" here "

This is the link: http://validator.w3.org/check?uri=http%3A%2F%2Fblog.0arrays.com%2F&charset=%28detect+automatically%29&doctype=Inline&ss=1&outline=1&group=0&No200=1&verbose=1&user-agent=W3C_Validator%2F1.1#line-237

Upvotes: 1

Views: 194

Answers (2)

khachik
khachik

Reputation: 28703

That means no body allowed in HTML 4.01 Frameset. Try to correct the DOCTYPE to point to the document type you needed. Choosing a DOCTYPE might help.

Upvotes: 1

Glen Solsberry
Glen Solsberry

Reputation: 12320

You have a body tag in your HTML, even though you're using a Frameset DTD. You probably don't want the Frameset DTD, because you're not actually using frames.

See this article for more information.

Upvotes: 2

Related Questions