Skip to main content

HTML Guide

Free site validation

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

Start tag “head” seen but an element of the same type was already open.

An opening <head> tag has been found in an incorrect place. Check that there’s only a <head> tag in the document.

This issue can happen because the expected closing tag </head> was misspelled as <head>, as in this example:

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

  <body>
  </body>
</html>

Or, it could happen because another <head>...</head> section was nested inside a previous one:

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

  <body>
  </body>
</html>

Learn more:

Related W3C validator issues