📡 You're offline — showing cached content
New version available!
Quick Access
Tutorials HTML Fundamentals Microdata and Schema.org

Microdata and Schema.org

5 min read
JSON-LD with Schema.org adds structured data that search engines can read and use for rich results. Use Article, Product, FAQ, and BreadcrumbList types. Place in a script type='application/ld+json' in the head.

Schema.org Structured Data

<!-- JSON-LD (recommended) -->
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "How to Use HTML",
  "author": { "@type": "Person", "name": "Alice" },
  "datePublished": "2024-01-15"
}
</script>

Schema.org helps search engines understand your content better and enables rich results.