A meta tag is an HTML tag in the <head> that gives information about a page. Stores use meta tags to control crawling, show better snippets, and share rich previews.
A meta tag is an HTML element that provides metadata about a web page to browsers, crawlers, and social platforms. Common SEO-related meta tags include meta name="description"
, meta name="robots"
, and Open Graph/Twitter tags for sharing.
meta name="description"
suggests SERP snippet text.meta name="robots"
controls indexing and following (index, follow
, noindex
, max-snippet
, etc.).og:title
, og:description
, og:image
, twitter:card
define share previews.width=device-width, initial-scale=1
).link rel="canonical"
, hreflang
, and structured data via JSON-LD.index,follow
on canonical pages; noindex
on thin/duplicate variants (most faceted URLs).noindex
+ canonical.Meta tags shape how pages are crawled, summarized, and shared. Keep descriptions unique, robots rules precise, and OG/Twitter tags clean for strong CTR and safe indexing.
Is the Title a meta tag?
Technically it’s a <title>
element, not a meta tag—but it’s part of the head and critical for SEO.
Do meta descriptions affect ranking?
Not directly; they affect CTR, which impacts performance.
Meta robots vs robots.txt?
robots.txt
manages crawl access; meta robots sets per-page indexing rules.