Meta tags are HTML elements in your page's <head> that provide metadata about the page to search engines, social media platforms, and browsers. Getting them right is crucial for SEO, social sharing, and user experience.
Essential Meta Tags
Title Tag
The most important on-page SEO element. Displayed in search results, browser tabs, and social shares.
<title>JSON Formatter Online Free – Beautify JSON | Devkitr</title>
Best practices:
Meta Description
A summary of the page content shown in search result snippets.
<meta name="description" content="Format and beautify JSON data online for free. Fast, secure, 100% client-side JSON formatter." />
Best practices:
Meta Keywords
Largely ignored by Google since 2009, but some search engines still consider them.
<meta name="keywords" content="json formatter, json beautifier, format json online" />
Open Graph Tags (Facebook, LinkedIn)
Open Graph (OG) tags control how your page appears when shared on social media.
<meta property="og:type" content="website" />
<meta property="og:url" content="https://devkitr.com/" />
<meta property="og:title" content="Devkitr – Free Online Developer Tools" />
<meta property="og:description" content="40+ free developer tools..." />
<meta property="og:image" content="https://devkitr.com/og-image.png" />
<meta property="og:site_name" content="Devkitr" />
Image recommendations:
Twitter Card Tags
Control how your page appears in Twitter/X posts.
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Devkitr – Free Online Developer Tools" />
<meta name="twitter:description" content="40+ free developer tools..." />
<meta name="twitter:image" content="https://devkitr.com/og-image.png" />
<meta name="twitter:site" content="@devkitr" />
Card types:
summary — small square image + title + descriptionsummary_large_image — large rectangular image + title + descriptionCanonical Tag
Tells search engines which URL is the "official" version of a page, preventing duplicate content issues.
<link rel="canonical" href="https://devkitr.com/category/json-tools/json-formatter" />
Use canonical tags when:
Robots Meta Tag
Control how search engines crawl and index your page.
<meta name="robots" content="index, follow" />
Common directives:
index / noindex — allow or prevent indexingfollow / nofollow — follow or ignore links on the pagemax-snippet:-1 — no limit on snippet lengthmax-image-preview:large — allow large image previewsViewport Tag
Essential for mobile responsiveness:
<meta name="viewport" content="width=device-width, initial-scale=1" />
Structured Data
While not a meta tag, JSON-LD structured data enhances search results with rich snippets:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Devkitr",
"url": "https://devkitr.com"
}
</script>
Common Mistakes
Generate all your meta tags automatically with our Meta Tag Generator.
