Warning Duplicate title, meta description, or canonical tag
Why having more than one <title>, meta description, or canonical link leaves every copy but the first as dead weight.
The validator flags a document with more than one <title>, more than one <meta name="description">, or more than one <link rel="canonical">.
Example
<!-- Wrong: two competing canonical tags -->
<link rel="canonical" href="https://example.com/page">
<link rel="canonical" href="https://example.com/page/">
<!-- Right: exactly one -->
<link rel="canonical" href="https://example.com/page">Why it matters
Each of these tags is defined to appear at most once per document, and browsers and search engines only ever use the first occurrence — every duplicate after it is simply ignored. This usually happens when a template or a CMS injects one of these tags automatically, and a page-specific override adds a second one without removing the default, or when two templates get merged during a redesign. The practical risk with a duplicate canonical or description is that whichever one happens to come first — not necessarily the intended one — is what search engines actually use, which can quietly point crawlers at the wrong URL or show the wrong snippet.
Frequently asked questions
Which tag wins when there are duplicates?
The first one in document order. Browsers and search engines don't merge or average duplicate title, description, or canonical tags — everything after the first is dead weight with no effect.
How does this usually happen by accident?
Most often when a base template already injects a default tag (from a CMS or layout component) and a specific page adds its own without removing or overriding the default, leaving both in the rendered output.