Skip to main content
HTML Validation

Element “head” is missing a required instance of child element “title”.

About This HTML Issue

The <head> section of an HTML document contains metadata about the document, and as a minimum it must include a <title> tag defining the document title.

Common causes for this issue are forgetting to define the <title>, or duplicated <head> sections where one of them does not include the title.

Here’s an example of a minimal HTML document including the title:

<!DOCTYPE html>
<html>
  <head>
    <title>Don't panic! This is the title</title>
  </head>
  <body>
    <p></p>
  </body>
</html>

Last reviewed: October 27, 2022

Was this guide helpful?

Find issues like this automatically

Rocket Validator scans thousands of pages in seconds, detecting HTML issues across your entire site.

Ready to validate your sites?
Start your free trial today.