Developers write great tutorials and get zero readers. Marketing people write mediocre content and get 50K views. The difference isn't writing quality — it's understanding how people find content in 2026.

You don't need to become an SEO expert. You need to learn about 5 things, spend an extra 15 minutes per article, and your traffic will 10x. Here's the playbook.

Rule 1: Write for a Question, Not a Topic

Bad: "JavaScript Promises" (topic — already covered by MDN, W3Schools, and 10,000 Medium posts)

Good: "How to handle errors in Promise.allSettled with retry logic" (specific question with low competition)

Before writing, Google your title. If the first page is all major sites (MDN, freeCodeCamp, DigitalOcean), pick a more specific angle. If the results are Reddit threads and Stack Overflow posts, you've found a gap.

Rule 2: The Title is 80% of SEO

Your title should contain the exact phrase someone would type into Google:

  • Bad: "My Thoughts on Docker"
  • Good: "How to Reduce Docker Image Size by 90% (Step-by-Step)"
  • Bad: "CSS Is Cool"
  • Good: "Dark Mode with Pure CSS (No JavaScript Required)"

Include the main keyword in the first 60 characters. Google truncates anything longer.

Rule 3: The Meta Description Sells the Click

The meta description appears below your title in search results. It doesn't affect ranking, but it affects whether people click:

<meta name="description" content="Stop uploading 
sensitive documents to ChatGPT. Build a fully offline 
document analysis system that never touches the internet.">

Keep it under 155 characters. Make it a promise: "Here's what you'll learn/get/build."

Rule 4: Structure for Scanners

Nobody reads blog posts top to bottom anymore. People scan. Optimize for that:

  • One H1 (your title) — only one per page
  • H2s for major sections — these show up in Google's featured snippets
  • Short paragraphs — 2-3 sentences max
  • Bold key phrases — helps scanners find what they need
  • Code blocks — developers love copy-pasteable solutions
  • Tables — Google loves structured data and often pulls tables into search results

Rule 5: Internal Linking is Free Authority

Every article you write should link to 2-3 of your other articles. This tells Google your site has depth on a topic (topical authority) and keeps readers on your site longer.

<!-- In your article about dark mode -->
<p>If you're building static sites, check out my guide to 
<a href="posts/vanilla-css-grid-blog-layouts.html">
CSS Grid blog layouts</a> for the perfect complement.</p>

The 15-Minute SEO Checklist

Before publishing any article, spend 15 minutes on this:

  1. Title contains your target keyword phrase (under 60 chars)
  2. Meta description is compelling (under 155 chars)
  3. Only one H1 tag on the page
  4. H2s are descriptive and contain related keywords
  5. At least 2 internal links to your other posts
  6. Images have descriptive alt text
  7. URL slug is short and keyword-rich
  8. Page loads in under 2 seconds (easy if it's static HTML)

What About AI Overviews?

In 2026, Google often shows AI-generated summaries above search results. To get cited in these:

  • Write clear, self-contained answer blocks (2-3 sentences that directly answer a question)
  • Use tables and lists (AI models love structured data)
  • Include specific numbers, benchmarks, or comparisons
  • Share genuine personal experience ("I tested this and found…")

The irony of the AI era: authentic human experience is now the most valuable SEO signal. Google specifically looks for content that AI can't generate — your personal benchmarks, your failed experiments, your opinionated takes.

Write like a human who's actually done the thing. That's the whole strategy.