W3C Standards Ignored by Search Engines Since 2009
Back in 2009, Google officially confirmed what many in the web development community had long suspected: the keywords meta tag was completely ignored in web search rankings. But this was just the tip of the iceberg. What many don’t realize is that the W3C standardized numerous other meta tags that search engines have quietly abandoned over the years. Let’s take a nostalgic journey through these digital dinosaurs.
The Infamous Keywords Meta Tag
The <meta name="keywords" content="..."> tag was once the crown jewel of SEO optimization. In the mid-1990s, search engines like AltaVista and Infoseek heavily relied on this tag to index content. Webmasters would carefully craft comma-separated keyword lists hoping to rank higher in search results.
Then came the abuse. Keyword stuffing became epidemic—webmasters would load their pages with irrelevant keywords that had nothing to do with their actual content. Search engines quickly learned they couldn’t trust self-reported metadata.
In September 2009, Google’s Matt Cutts officially announced what many had suspected: Google doesn’t use the keywords meta tag in web search ranking. Yahoo followed shortly after, essentially burying this W3C-standardized element.
Interestingly, the W3C HTML specification still acknowledges this tag, even noting in the spec itself: “Many search engines do not consider such keywords, because this feature has historically been used unreliably and even misleadingly as a way to spam search engine results.”
The Forgotten Siblings
Beyond keywords, several other W3C-standardized meta tags have fallen by the wayside:
Abstract — Intended to provide a brief summary of the page content. Search engines have never used it.
Author — Specifies the author of the document. Despite being a standard since HTML 4.01, no major search engine uses it for ranking purposes.
Copyright — Meant to declare copyright information. While semantically useful, search engines ignore it completely.
Date — Specifies the creation date of the document. Not used by any search engine for indexing.
Distribution — Intended to indicate the distribution level (global, local, etc.). Completely ignored.
Language — Declares the primary language. Browsers can determine this from the lang attribute on the <html> element, making this redundant.
Publisher — Identifies the publisher of the document. Not used by search engines.
Rating — Content rating (like PG-13). No search engine pays attention to it.
Reply-to — Email address for contact. Not indexed.
Revisit-after — Suggested crawler revisit interval. Google explicitly states this is ignored in favor of XML sitemaps, which offer more precise control.
The Meta Refresh Debacle
The <meta http-equiv="refresh" content="..."> tag was standardized for auto-refreshing pages and simple redirects. However:
- It’s been deprecated for over a decade
- W3C’s Web Content Accessibility Guidelines 2.0 explicitly warn against it
- Users find it confusing and inaccessible
- Server-side 301 redirects are the proper way to handle URL changes
What Survived?
Despite the extinction of most meta tags, a few have stood the test of time:
- Description — Still used by Google for search result snippets (though not for ranking)
- Robots — Controls indexing behavior (noindex, nofollow, etc.)
- Viewport — Essential for mobile responsiveness
- Theme-color — Used by browsers for UI chrome
The Takeaway
The history of meta tags teaches us an important lesson: search engines evolved to prioritize signals that couldn’t be easily manipulated. When a ranking factor becomes unreliable due to abuse, search engines move on.
The W3C maintains standards that reflect what could be useful, while search engines make practical decisions based on actual usefulness. This tension between standards bodies and search engine behavior continues to shape web development practices today.
So next time you see a meta tag that feels obsolete, there’s probably a good reason—and a history lesson behind it.
Note: While these meta tags may not help with search rankings, they aren’t harmful to include. Some internal site search engines and tools may still use them. And who knows? Perhaps someday search engines will find new uses for the metadata authors carefully provide.

