Missing title tag

highseo-title-missing

A missing <title> leaves search results, browser tabs and bookmarks with no name for the page. One line in <head> fixes it.

What it is

The <title> tag in a page's <head> names the page for browsers, search results and social shares. It's one of the few pieces of a page search engines still treat as an explicit, author-declared signal rather than something inferred from content.

It should be unique per page and, per the usual guidance, somewhere between 10 and 60 characters — short enough that search engines don't truncate it, long enough to actually describe the page.

Why it matters

A missing title tag leaves a browser tab unlabeled, a search result with a search-engine-generated placeholder instead of the page's own words, and a bookmark with no useful name. It's one of the highest-severity findings this scanner reports, because it affects how the page is represented everywhere outside itself, not just on the page.

It's also one of the simplest fixes available: one line in <head>, with no dependency on anything else about the page's structure.

How to fix it

with a reference doc
html
<head>
  <title>Concise, descriptive page title</title>
</head>

Reference documentation

Related checks

3
mediumMissing meta descriptionThe meta description is a <meta name="description"> tag summarizing the page in a sentence or two. Search engines usually — not always — use it verbatim as the snippet shown under a result's title.lowCanonical tagA canonical tag (<link rel="canonical">) declares a page's preferred URL when the same content is reachable at more than one address — with and without a trailing slash, with and without a tracking query string, over http and https.highMeta robots noindexThe meta robots tag — <meta name="robots" content="..."> — gives per-page instructions to crawlers, most commonly noindex (don't show this page in search results) and nofollow (don't follow links from this page). This check fails when either is set.

This is one of the 75 checks the scanner runs. See what we check for the full list, every severity weight, and how the score is computed from them.

See whether your own site passes missing title tag.

One page, all 75 checks, free. No account, no card.

Run a scan