Skip to main content

HTML Guide

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