🏷️ Meta Tags Checker

🔍 Extract every <meta> and <link> tag, see a Google SERP preview, inspect Open Graph and Twitter Card tags, and spot length issues at a glance.

HTML <head> Metadata Architecture & Search Optimization

HTML metadata elements located inside the document <head> inform search engine crawlers, social graph scrapers, and web browsers how to interpret, render, and index a webpage.

Core SEO Metadata Elements

1. Document Title (<title>)

The <title> tag remains one of the strongest on-page relevance signals for organic search.

  • SERP Pixel Limit: Google desktop search results allocate approximately 600 pixels (typically 50–60 characters). Titles exceeding this limit get truncated with an ellipsis.
  • Format: Primary Keyword - Secondary Keyword | Brand Name
  • Uniqueness: Every URL must have a unique title tag to avoid title cannibalization across indexable pages.

2. Meta Description

<meta name="description" content="Concise summary of the page content containing primary search terms and a clear call-to-action." />

While meta descriptions are not a direct algorithmic ranking factor, they directly determine organic click-through rates (CTR). Recommended length is 120 to 160 characters. Search engines highlight searched terms in bold within the description snippet.

3. Viewport Meta Tag (Mobile Readiness)

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

Mandatory for responsive rendering. Without this tag, mobile browsers render desktop-width viewports and scale down content, triggering mobile usability errors in Google Search Console.

4. Character Encoding & Document Language

<meta charset="UTF-8" />
<html lang="en">

Declaring UTF-8 within the first 1024 bytes of the HTML document prevents character encoding mismatches and garbled text across international browsers.

Social Metadata: Open Graph & Twitter Cards

Social platforms like Facebook, LinkedIn, Discord, and Slack consume Open Graph (OG) protocol tags, while X (Twitter) reads Twitter Card markup with fallback to OG:

<!-- Open Graph -->
<meta property="og:type" content="article" />
<meta property="og:title" content="Page Headline" />
<meta property="og:description" content="Summary of the article." />
<meta property="og:image" content="https://example.com/images/cover.jpg" />
<meta property="og:url" content="https://example.com/page" />

<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@brandhandle" />

Validate your social cards and test aspect ratio rendering with our Open Graph Checker.

Frequently Asked Questions

Why does Google rewrite or replace my title tag in search results?

Google may replace your title tag if it is excessively long, keyword-stuffed, repetitive across pages, or does not accurately match the user's specific search query. Ensuring your title matches the primary <h1> heading reduces the chance of algorithmic overwrites.

Does the <meta name="keywords"> tag help SEO?

No. Google officially abandoned the keywords meta tag in 2009 due to widespread spam. Including it provides zero ranking benefit and reveals your target keywords to competitors.

What is the difference between meta robots and X-Robots-Tag?

The <meta name="robots"> tag is placed in HTML source code. The X-Robots-Tag is delivered via HTTP server response headers and works on non-HTML files (PDFs, images). Inspect directives with our Noindex Checker.