A page contains more than one <title> tag, which is invalid HTML and can confuse search engines.
By Seoxpert Editorial · Published
Only one <title> tag is valid per HTML document. Multiple <title> tags can signal template errors and cause SEO tools or crawlers to misinterpret your page's main title. This can lead to inconsistent indexing and display in search results.
Leaving multiple <title> tags can result in unpredictable or incorrect titles in search engine results.
An automated crawler parses the HTML and flags pages containing more than one <title> element in the <head>.
Problem: Multiple <title> tags in HTML
<head>
<title>Site Default Title</title>
...
<title>Page Specific Title</title>
</head>Fix: Only one <title> tag remains
<head>
<title>Page Specific Title</title>
...
</head>Browsers and search engines use only the first <title> tag and ignore the rest, which may cause confusion or incorrect titles in search results.
Review your layout and page templates or use your browser's developer tools to inspect the <head> section for duplicate <title> tags.
It can cause inconsistent or incorrect titles to appear in search results and signals poor HTML quality, which may indirectly affect SEO.
Set the title using metadata.title at the route level and remove any manual <title> tags from your components.
Run a scan to see if Pages with Multiple `<title>` Tags affects your pages.
Scan my website →