What it means
The page has no <title> element, has an empty one, or shares its title with other pages on the site. All three behave the same way in practice: the page has no distinct name.
Why it matters
The title is a ranking input, the headline of your search listing, the text in the browser tab, and the default label when someone bookmarks or shares the page. When it is missing, search engines construct one from the H1 or from link text, which is usually shorter and less specific than what you would have written. When it is duplicated across a section, you have told search engines that forty pages are the same page, and they will pick one to show.
How W3Audit detects it
Every audited URL has its title recorded, then checked for absence, emptiness, duplication across the crawl, and length beyond the display limit. We also flag titles that are technically present but effectively empty — a bare brand name repeated site-wide, or the CMS default such as “Home” or “Untitled”.
How severe it is
High as a rule. It becomes critical when the affected page is a primary commercial or landing page, because the cost is immediate and measurable in the results page. Duplication across a template is rated on reach: forty pages sharing one title is a high finding with a large effort estimate, since the fix is a template change rather than forty edits.
How to fix it
One unique title per page, roughly 50–60 characters, most specific words first, brand last. Describe the page, not the site.
<!-- weak --> <title>W3Audit</title> <title>Home | W3Audit | Website Audits | SEO | Accessibility | Performance</title> <!-- better --> <title>Website Accessibility Audit | WCAG Testing | W3Audit</title>
For templated pages, build the pattern from fields that are actually distinct — product name plus category, not category alone. If your title is written by client-side script, make sure it is also correct in the server response, since the rewritten value may not be what gets indexed.
How to verify the fix
Check the rendered <head> for exactly one non-empty title. Re-crawl the site and confirm zero duplicates. Watch the browser tab — if it shows the old value, something later in the page is overwriting it. After re-indexing, confirm the search listing uses your title rather than a rewritten one; persistent rewriting usually means the title is too long or does not match the page’s content.
Where this sits in your audit
This finding belongs to the SEO & content category — see the SEO & content audit for everything else reviewed alongside it, or the methodology for how its severity and score contribution are calculated. The website audit checklist includes it as a step you can run yourself.