Reputation: 1239
What does it mean when it says:
"Error Line 237, Column 6: document type does not allow element "BODY" here "
Upvotes: 1
Views: 194
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
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