Tutorial posts without HowTo Schema = buried on page 2. HowTo Schema = numbered steps shown in Google.
In this tutorial, you'll add HowTo Schema to Blogger tutorial posts. Follow along and you'll win step-by-step rich snippets + featured snippets in 2025.
Step 1: Why HowTo Schema Wins Google Featured Snippets 2025
Google loves structured tutorials. HowTo Schema = position zero.
- Rich snippets: Google shows "Step 1, Step 2, Step 3" directly in search
- Featured snippets: 70% of "how to" queries pull from HowTo Schema
- Voice search: Google Assistant reads steps aloud from your Schema
- Higher CTR: Numbered steps get 30% more clicks than plain results
Image: Google search showing "Steps" dropdown from HowTo Schema
Step 2: Add HowTo Schema to Blogger Tutorial Post
Paste this in post HTML editor. Works for any step-by-step guide.
- Posts → Edit Tutorial Post → Switch to "HTML" view → Paste at BOTTOM:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to Start a Blogger Blog in 2025",
"description": "Step-by-step tutorial to create a free Blogger blog, design theme, and get AdSense approval in 2025.",
"image": "https://yourblog.blogspot.com/howto-thumbnail.jpg",
"totalTime": "PT30M",
"estimatedCost": {
"@type": "MonetaryAmount",
"currency": "USD",
"value": "0"
},
"supply": [{
"@type": "HowToSupply",
"name": "Google Account"
},{
"@type": "HowToSupply",
"name": "Internet Connection"
}],
"tool": [{
"@type": "HowToTool",
"name": "Blogger.com"
}],
"step": [{
"@type": "HowToStep",
"url": "https://yourblog.blogspot.com/post-url#step1",
"name": "Step 1: Create Google Account",
"itemListElement": [{
"@type": "HowToDirection",
"text": "Go to accounts.google.com and click Create Account. Use real name for AdSense approval."
}],
"image": "https://yourblog.blogspot.com/step1.jpg"
},{
"@type": "HowToStep",
"name": "Step 2: Sign Up for Blogger",
"itemListElement": [{
"@type": "HowToDirection",
"text": "Visit blogger.com. Click Create Your Blog. Choose blog title and URL."
}],
"image": "https://yourblog.blogspot.com/step2.jpg"
},{
"@type": "HowToStep",
"name": "Step 3: Design Theme",
"itemListElement": [{
"@type": "HowToDirection",
"text": "Theme → Customize. Pick Contempo or Soho theme. Upload logo and set colors."
}]
},{
"@type": "HowToStep",
"name": "Step 4: Write First Post",
"itemListElement": [{
"@type": "HowToDirection",
"text": "Posts → New Post. Write 1000+ words. Add headings, images, labels."
}]
},{
"@type": "HowToStep",
"name": "Step 5: Apply for AdSense",
"itemListElement": [{
"@type": "HowToDirection",
"text": "Earnings → Sign up for AdSense. Add 20 posts first. Wait 2-4 weeks for approval."
}]
}]
}
</script>
- Replace all placeholders: Tutorial name, description, image, steps, URLs
- totalTime: PT30M = 30 minutes. PT1H = 1 hour. PT2H30M = 2.5 hours
Step 3: HowTo Schema Required Fields 2025
| Field | Required? | Rules |
| name | Yes | Match post title. Start with "How to" |
| step | Yes | Min 2 steps. Max 20 steps shown |
| image | Yes | Min 1200x900px. Show end result |
| totalTime | Recommended | ISO 8601: PT#H#M format |
| tool / supply | Recommended | List items needed for tutorial |
| video | Optional | Add VideoObject if you have tutorial video |
Step 4: Add Images to Each Step for Rich Results
Google shows step images in carousel. Add "image" to each step:
"step": [{
"@type": "HowToStep",
"name": "Step 1: Create Account",
"text": "Go to accounts.google.com...",
"image": "https://yourblog.com/step1-create-account.jpg"
}]
- Image size: 1600x900px works best for carousel
- Alt text: Add same image in post with alt="Step 1: Create Account"
- Visible steps: Schema steps must match visible H2/H3 steps in post
Step 5: Test HowTo Schema + Win Featured Snippets
- Rich Results Test: search.google.com/test/rich-results → Enter URL → Must show "HowTo" valid
- Search Console: Enhancements → How-to → Monitor impressions
- Fix: "Missing field step" = Add min 2 steps with
name+text - Fix: "Steps not showing" = Use H2 for each step in post. Add
id="step1"to H2 - Win snippet tip: Add FAQ Schema from Post #51 below HowTo. Google loves combo
Bad practice to avoid: Adding HowTo Schema to opinion posts or listicles. Only use for actionable tutorials with clear steps. Google gives manual action for misuse.
Important: HowTo rich results only show on mobile since 2023. Desktop shows normal result. Still add it - helps voice search + featured snippets. Update totalTime if tutorial changes. Max 1 HowTo Schema per page. Combine with Article Schema from Post #53 for best SEO.
0 Comments