Meta tags are the foundation of on-page SEO. This checklist covers every meta tag that matters in 2025 — from the basics to Open Graph, Twitter Cards, and structured data — with copy-paste examples for each.

Despite years of predictions that meta tags would become irrelevant, they remain one of the highest-leverage SEO activities you can do. The reason is simple: meta tags directly control how your pages appear in search results, social media previews, and AI-generated summaries. A page with a compelling title and description gets more clicks — and more clicks signal relevance to Google.
The SEO dimension of the WIS (weighted at 20%) checks for the presence and quality of meta tags as one of its primary signals. Here is the complete checklist.
The title tag is the most important on-page SEO element. It appears as the clickable headline in Google search results and in browser tabs.
<title>Website Security Score Guide | SiteReveal</title>
<title>Website Security Score Guide | SiteReveal</title>
Best practices:
The meta description appears as the snippet of text below the title in search results. Google does not use it as a ranking signal, but it directly affects click-through rate.
<meta name="description" content="Learn what a good website security score looks like, which HTTP headers matter most, and how to move from a failing grade to best-in-class in under an hour.">
<meta name="description" content="Learn what a good website security score looks like, which HTTP headers matter most, and how to move from a failing grade to best-in-class in under an hour.">
Best practices:
The canonical tag tells search engines which URL is the "master" version of a page, preventing duplicate content issues.
<link rel="canonical" href="https://sitereveal.manus.space/blog/seo-meta-tags-complete-checklist-2025">
<link rel="canonical" href="https://sitereveal.manus.space/blog/seo-meta-tags-complete-checklist-2025">
When to use it:
rel="next"/rel="prev")Controls whether search engines index the page and follow its links.
<!-- Default: index and follow all links -->
<meta name="robots" content="index, follow">
<!-- Prevent indexing (login pages, thank-you pages, etc.) -->
<meta name="robots" content="noindex, nofollow">
<!-- Index but don't follow links -->
<meta name="robots" content="index, nofollow">
<!-- Default: index and follow all links -->
<meta name="robots" content="index, follow">
<!-- Prevent indexing (login pages, thank-you pages, etc.) -->
<meta name="robots" content="noindex, nofollow">
<!-- Index but don't follow links -->
<meta name="robots" content="index, nofollow">
Open Graph tags control how your pages appear when shared on Facebook, LinkedIn, Slack, and most other social platforms.
<meta property="og:title" content="SEO Meta Tags: The Complete 2025 Checklist">
<meta property="og:description" content="Every meta tag that matters in 2025, with copy-paste examples.">
<meta property="og:image" content="https://sitereveal.manus.space/og/seo-meta-tags.jpg">
<meta property="og:url" content="https://sitereveal.manus.space/blog/seo-meta-tags-complete-checklist-2025">
<meta property="og:type" content="article">
<meta property="og:site_name" content="SiteReveal">
<meta property="og:title" content="SEO Meta Tags: The Complete 2025 Checklist">
<meta property="og:description" content="Every meta tag that matters in 2025, with copy-paste examples.">
<meta property="og:image" content="https://sitereveal.manus.space/og/seo-meta-tags.jpg">
<meta property="og:url" content="https://sitereveal.manus.space/blog/seo-meta-tags-complete-checklist-2025">
<meta property="og:type" content="article">
<meta property="og:site_name" content="SiteReveal">
Image requirements for og:image:
Twitter (now X) uses its own set of meta tags for link previews. These take precedence over Open Graph tags on the platform.
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@SiteReveal">
<meta name="twitter:title" content="SEO Meta Tags: The Complete 2025 Checklist">
<meta name="twitter:description" content="Every meta tag that matters in 2025, with copy-paste examples.">
<meta name="twitter:image" content="https://sitereveal.manus.space/og/seo-meta-tags.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@SiteReveal">
<meta name="twitter:title" content="SEO Meta Tags: The Complete 2025 Checklist">
<meta name="twitter:description" content="Every meta tag that matters in 2025, with copy-paste examples.">
<meta name="twitter:image" content="https://sitereveal.manus.space/og/seo-meta-tags.jpg">
Card types:
summary — small square image, suitable for most contentsummary_large_image — large banner image, best for articles and blog postsplayer — for video and audio contentapp — for mobile app promotionStructured data is not technically a meta tag, but it belongs in the <head> and has a significant impact on how Google displays your pages. It enables rich results — star ratings, FAQ dropdowns, breadcrumbs, and more.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "SEO Meta Tags: The Complete 2025 Checklist",
"description": "Every meta tag that matters in 2025, with copy-paste examples.",
"author": {
"@type": "Organization",
"name": "SiteReveal"
},
"publisher": {
"@type": "Organization",
"name": "SiteReveal",
"logo": {
"@type": "ImageObject",
"url": "https://sitereveal.manus.space/logo.png"
}
},
"datePublished": "2025-03-01",
"dateModified": "2025-03-18"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "SEO Meta Tags: The Complete 2025 Checklist",
"description": "Every meta tag that matters in 2025, with copy-paste examples.",
"author": {
"@type": "Organization",
"name": "SiteReveal"
},
"publisher": {
"@type": "Organization",
"name": "SiteReveal",
"logo": {
"@type": "ImageObject",
"url": "https://sitereveal.manus.space/logo.png"
}
},
"datePublished": "2025-03-01",
"dateModified": "2025-03-18"
}
</script>
FAQ schema is particularly valuable for informational content — it can generate an expandable FAQ section directly in Google search results, significantly increasing your click-through rate.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What is the most important meta tag for SEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The title tag is the most important meta tag for SEO. It appears as the clickable headline in search results and has the highest correlation with rankings."
}
}]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What is the most important meta tag for SEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The title tag is the most important meta tag for SEO. It appears as the clickable headline in search results and has the highest correlation with rankings."
}
}]
}
</script>
| Tag | Priority | Status |
|---|---|---|
<title> | Critical | Required on every page |
<meta name="description"> | High | Required on every page |
<link rel="canonical"> | High | Required on every page |
<meta name="robots"> | Medium | Required on non-indexable pages |
<meta property="og:title"> | High | Required for social sharing |
<meta property="og:description"> | High | Required for social sharing |
<meta property="og:image"> | High | Required for social sharing |
<meta property="og:url"> | Medium | Recommended |
<meta name="twitter:card"> | Medium | Required for Twitter previews |
<meta name="twitter:title"> | Medium | Recommended |
<meta name="twitter:image"> | Medium | Recommended |
| Article Schema | Medium | Recommended for blog posts |
| FAQ Schema | Medium | Recommended for Q&A content |
<meta name="viewport"> | Critical | Required for mobile |
<html lang="en"> | High | Required for accessibility |
Run a free SEO scan on your site to see which of these tags are present, missing, or misconfigured — and get a prioritised list of fixes.
Get a free Website Intelligence Score™ covering security, performance, SEO, and technology stack.
Learn how to interpret every section of a SiteReveal website intelligence report — from the WIS score breakdown to the technology stack, actionable recommendations, and competitive benchmarks.
The WIS is a composite 0–100 score across six dimensions of website quality. This article explains exactly how it is calculated, what each dimension measures, and what a good score looks like for your industry.
Security scores can feel abstract. This guide explains exactly what a strong website security score looks like, which HTTP headers matter most, and how to move from a failing grade to best-in-class in under an hour.
The SiteReveal team builds tools that help developers, marketers, and founders understand what's really happening under the hood of any website — from security posture to performance bottlenecks and technology stack fingerprinting.
We use cookies to analyze site traffic, improve performance, and personalize your experience. By clicking "Accept", you consent to our use of cookies in accordance with our Privacy Policy.