Text found after closing </body>-tag
Cause:
Some HTML tags are defined after the end of the body, after the </body> tag.
Example:
 |
<html>
<head><title>hello</title></head>
<body>hello </body>
<b>world</b>
</html>
|
 |
<html>
<head><title>hello</title></head>
<body>
hello <b>world</b>
</body>
</html>
|
Solution:
Place the closing </body> after the text.
References: