← Back to Articles

SEO & LLMO Optimization

Traditional SEO

<!-- Essential meta tags -->
<title>Page Title - Site Name</title>
<meta name="description" content="150-160 character description">
<link rel="canonical" href="https://example.com/page/">


<h1>Main Title (one per page)</h1>
<h2>Section headings</h2>
<h3>Subsection headings</h3>


<article>
    <header><h1>Article Title</h1></header>
    <time datetime="2026-03-01">March 1, 2026</time>
    <p>Content...</p>
</article>


<nav>
    <a href="/related-article/">Related Content</a>
</nav>

Open Graph Tags

<!-- Open Graph / Facebook -->
<meta property="og:type" content="article">
<meta property="og:url" content="https://example.com/page/">
<meta property="og:title" content="Page Title">
<meta property="og:description" content="Description">
<meta property="og:image" content="https://example.com/image.jpg">
<meta property="og:image:alt" content="Image description">
<meta property="og:site_name" content="Site Name">


{
    "@type": "BreadcrumbList",
    "itemListElement": [{
        "@type": "ListItem",
        "position": 1,
        "name": "Home",
        "item": "https://example.com/"
    }, {
        "@type": "ListItem",
        "position": 2,
        "name": "Article",
        "item": "https://example.com/article/"
    }]
}

LLMO (Large Language Model Optimization)

/* LLMO Best Practices */

1. Clear Structure
   - Use descriptive headings (H1, H2, H3)
   - Organize content logically
   - Include table of contents for long articles

2. Define Key Terms
   - Use <dfn> for definitions
   - Include glossary sections
   - Link to authoritative sources

3. Answer Questions Explicitly
   - Use FAQ sections
   - Format as Q&A
   - Include "What is X" sections

4. Comprehensive Coverage
   - Cover topics thoroughly
   - Include examples
   - Add code samples

5. Authoritative Signals
   - Cite sources
   - Include author bio
   - Show publication dates

Technical SEO

<!-- robots.txt -->
User-agent: *
Allow: /
Disallow: /admin/
Sitemap: https://example.com/sitemap.xml