Skip to main content

HTML Guide

Free site validation

Find out what web pages on your sites are affected by HTML issues.

Saw an end tag after “body” had been closed.

An end tag has been found after the closing </body> tag, which breaks the expected HTML document structure.

Check out the document structure, a basic example follows:

<!DOCTYPE html>
<html lang="">
  <head>
    <title>Test</title>
  </head>
  <body>
    <p></p>
  </body>
</html>

Related W3C validator issues