What This Means

The document has no <head> element. The HTML specification requires a head element to contain the document's metadata — title, canonical, meta tags, stylesheets, etc.

Why It Matters for SEO

Without a <head> element, browsers apply HTML error recovery rules to infer where the head section would be. In many cases, this means metadata elements (title, meta, link) that appear early in the document are interpreted as part of a synthesized head — but the boundaries of that head may not match what was intended, causing metadata to be misassociated.

Error-level severity because a missing head is a fundamental structural failure, not just a missing optimization.

What the Platform Checks

Parses the document and checks for the existence of a <head> element. Fires when absent.

How to Fix It

Add a proper <head> element wrapping all document metadata:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Page Title</title>
  ...
</head>
<body>...</body>
</html>

Find every pagemissing a head element

The audit identifies pages without a head element — fundamental HTML structure issues.