HTML Head Keywords
The HTML <head> holds metadata like the title and meta tags that control how search engines understand and display a page.
If you have ever stuffed meta keywords hoping for a ranking boost, you have wasted time on a tag Google ignores entirely.
Key points
- Write a unique, descriptive title tag for every page — it is your strongest ranking signal from the
<head>. - Skip the
meta name="keywords"tag for Google; it has no effect on rank and wastes space. - Always include a
meta descriptionwith a clear summary — it can improve click-through rates from search results. - Set character encoding and viewport in the
<head>to ensure correct rendering across devices. - Place all stylesheets and scripts in the
<head>only if they are needed early; defer non-critical scripts to the body.
A meta keywords tag that changed nothing
In 2018, a gardening site added 30 terms like lawn care and weed control to its meta keywords tag, hoping to rank better for each. Its Google traffic did not shift. The page already ranked for lawn care because its title tag and body content matched the term. The extra keywords, ignored by Google, added no value — and the site later removed them without any drop in rankings. A secondary keyword like weed control never appeared in the title or body, so it was invisible to Google anyway.
Three parts of the `<head>` that affect ranking
- Title tag This is the single most important element for SEO. It defines the page title shown in search results and browser tabs, and it is a strong ranking signal.
- Meta description While not a direct ranking factor, a well-written meta description can improve click-through rates by summarising the page content in search snippets.
- Canonical tag The
<link rel="canonical">tells search engines which URL is the preferred version, preventing duplicate content issues across similar pages and consolidating ranking signals for the same content.
Three ways it goes wrong
- Relying on meta keywords Google ignores the
meta keywordstag for ranking. Using dozens of terms here wastes effort and does not help visibility. - Missing essential tags Omitting charset or viewport can break responsive design and cause pages to render poorly on mobile, hurting user experience and SEO.
- Repeating titles across pages Every page must have a unique title tag. Duplicate titles confuse search engines which page to show for a given query.
Common questions
What is the use of the head tag in HTML?
It holds metadata like title and meta tags that control how the page is displayed and understood by browsers and search engines.
Does Google use the meta keywords tag?
No, Google has stated it ignores the meta keywords tag for ranking, so it has no effect on search performance.
Sources
- MDN Web Docs — Web page metadata Explains head element purpose and common metadata tags.
- W3C — HTML5 Document metadata Official specification of head and meta elements in HTML5.
- Google Search Central Covers Google’s stance on meta keywords and head element best practices.