TechTalks
Chapter 2 of 3

On-Page SEO

On-page SEO refers to the optimizations you make directly on your web pages to help search engines understand your content and rank it higher. Unlike off-page SEO (backlinks, social signals), on-page SEO is entirely within your control.

1. Title Tags

The <title> tag is the single most important on-page SEO element. It appears in the browser tab and as the clickable headline in search results.

  • Keep it under 60 characters to avoid truncation.
  • Place your primary keyword near the beginning.
  • Make it compelling — it's your first impression in search results.
  • Each page should have a unique title.
Good vs bad title tagshtml
<!-- ❌ Bad: Generic, no keyword -->
<title>Home</title>

<!-- ✅ Good: Keyword-rich, compelling -->
<title>Learn SEO for Free — Complete Beginner's Guide | TechTalks</title>

2. Meta Descriptions

Meta descriptions don't directly affect rankings, but they heavily influence click-through rate (CTR). A well-written meta description can be the difference between a user clicking your result or a competitor's.

Pro Tip

Include a call-to-action in your meta description. Phrases like 'Learn how', 'Discover', or 'Get started' increase CTR.

3. Heading Hierarchy

Use a logical heading structure: one <h1> per page (your main topic), then <h2> for sections, <h3> for sub-sections. This helps both users and search engines understand your content structure.

Proper heading hierarchyhtml
<h1>Complete Guide to On-Page SEO</h1>
  <h2>Title Tags</h2>
    <h3>Best Practices</h3>
    <h3>Common Mistakes</h3>
  <h2>Meta Descriptions</h2>
  <h2>Image Optimization</h2>

4. Image Optimization

  • Always add descriptive alt text to images.
  • Compress images to reduce page load time.
  • Use modern formats like WebP or AVIF.
  • Use descriptive filenames: seo-checklist.webp instead of IMG_1234.jpg.

5. Internal Linking

Link related pages together within your site. Internal links help search engines discover content, distribute page authority, and keep users engaged longer.

On-Page SEO Checklist

✅ Unique, keyword-rich title tag ✅ Compelling meta description with CTA ✅ One H1, logical heading hierarchy ✅ Optimized images with alt text ✅ Internal links to related content ✅ Clean, readable URL structure