0
0
SeoHow-ToBeginner · 3 min read

How to Write Meta Description for SEO: Best Practices and Examples

To write a good meta description for SEO, create a concise summary of the page content in 150-160 characters that includes important keywords naturally. This description appears in search results and should encourage users to click by being clear and relevant.
📐

Syntax

A meta description is added in the HTML <head> section using the <meta> tag with the name attribute set to description and the content attribute containing the summary text.

Example parts:

  • <meta>: HTML tag for metadata
  • name="description": specifies this meta tag is a description
  • content="...": the actual description text shown in search results
html
<meta name="description" content="Your concise page summary with keywords here">
💻

Example

This example shows a meta description for a webpage about baking chocolate chip cookies. It is clear, includes keywords, and fits the recommended length.

html
<head>
  <meta charset="UTF-8">
  <meta name="description" content="Learn how to bake delicious chocolate chip cookies with easy step-by-step instructions and tips for perfect results every time.">
  <title>Chocolate Chip Cookie Recipe</title>
</head>
⚠️

Common Pitfalls

Common mistakes when writing meta descriptions include:

  • Making it too long (over 160 characters), causing it to be cut off in search results.
  • Stuffing keywords unnaturally, which can hurt readability and SEO.
  • Using generic or vague descriptions that don’t explain the page content.
  • Omitting the meta description tag entirely, losing control over what search engines show.

Always write unique descriptions for each page to improve SEO and user experience.

html
<!-- Wrong: Too long and keyword stuffing -->
<meta name="description" content="Buy cheap shoes cheap shoes cheap shoes online best shoes cheap shoes sale cheap shoes cheap shoes cheap shoes">

<!-- Right: Clear, concise, natural keywords -->
<meta name="description" content="Shop affordable, stylish shoes online with fast shipping and great customer service.">
📊

Quick Reference

  • Keep meta descriptions between 150-160 characters.
  • Include important keywords naturally.
  • Make it a clear, compelling summary of the page.
  • Write unique descriptions for each page.
  • Avoid keyword stuffing and vague phrases.

Key Takeaways

Write meta descriptions that are concise summaries of page content within 150-160 characters.
Include relevant keywords naturally to help SEO without keyword stuffing.
Make descriptions clear and compelling to encourage clicks from search results.
Use unique meta descriptions for every page to improve search visibility.
Avoid overly long or vague descriptions that reduce effectiveness.