Contents

[edit]

Tidy: Text found after closing </body>-tag

[edit]

Cause:

Some HTML tags are defined after the end of the body, after the </body> tag.

[edit]

Example:

Good

<html>
 <head><title>hello</title></head>
 <body>hello </body>
 <b>world</b>
</html>

Good

<html>  <head><title>hello</title></head>
 <body>
 hello <b>world</b>
 </body>
</html>

[edit]

Solution:

Place the closing </body> after the text.

[edit]

References:

Retrieved from "http://www.htmlpedia.org/wiki/Tidy_27"