Learning Hub — Beginner's Guide
⭐ Beginner — No coding experience needed

What you will learn in this guide

1 What is a meta description — and why does it matter?

Before you touch any code, you need to understand exactly what a meta description is and why it affects how many people click your page in Google search results.

Where your meta description appears

Your meta description appears directly below your page title and URL in Google search results. It is the short paragraph of text that gives people a preview of what your page is about before they click.

WhereWhat it looks likeWhy it matters
Google search results The short paragraph of grey text below your blue title and green URL Tells people what they will find if they click — directly affects your click-through rate
Social media shares The description shown when your URL is shared on Facebook, LinkedIn or WhatsApp A compelling description gets more shares and clicks

Is it a ranking factor?

Google does not use the meta description as a direct ranking factor — it will not make you rank higher on its own. However it directly affects your click-through rate (CTR). A well-written meta description means more people click your page even if it ranks at position 3 or 4. More clicks signal to Google that your page is relevant, which can improve rankings over time.

What happens if your meta description is missing or wrong

If your meta description is missing, Google will pull random text from your page content to use as the description — usually the first sentence it finds, which is rarely the most compelling text. You lose control of what people see before deciding whether to click.

If your meta description is too long, Google cuts it off with "…" mid-sentence. If it is too short, Google may ignore it and pull its own text instead.

❌ Bad meta description examples
Welcome to our website. We offer many services. Home | Company Name Lorem ipsum dolor sit amet consectetur...
✅ Good meta description examples
Emergency plumber in Manchester available 24/7. No call-out fee. Call now for a free quote and same-day service. Free SEO audit with 75+ checks — no sign-up needed. Find and fix every issue on your site in minutes.

2 Check your current meta description with AIPageSEO

Before you fix anything, you need to know exactly what your meta description currently says — or whether it exists at all.

  1. 1 Go to the AIPageSEO audit tool Open a new browser tab and go to https://aipageseo.com/seo-audit-platform.html. You do not need an account to run a basic audit.
  2. 2 Enter your page address Type the full address of the page you want to check, for example https://yourdomain.com. Make sure you include the https:// at the start.
  3. 3 Click Run Audit and wait It usually takes 10–30 seconds. Do not close the tab or refresh the page while it runs.
  4. 4 Find the Meta Description result When the audit finishes scroll down to the HTML or On-Page SEO section and look for the Meta Description row:
    StatusWhat it meansWhat to do
    🔴 MissingYou have no meta description at allFollow all steps in Section 4 below
    🟡 Too shortUnder 70 charactersRewrite it — see Section 3 first
    🟡 Too longOver 160 charactersShorten it — see Section 3 first
    🟡 DuplicateSame description on multiple pagesWrite a unique description for each page
    🟢 PassYour meta description looks goodNo action needed right now
  5. 5 Note down your current meta description text The audit will show you the full text of your current meta description. Write it down — you will use this in the next section to understand what needs to change.
💡 Can't find the Meta Description row? In your browser, right-click anywhere on your page and choose View Page Source. Press Ctrl+F (Windows) or ⌘ Cmd+F (Mac) and search for meta name="description". If you get zero results, your meta description is missing.

3 How to write a meta description that gets more clicks

Before you open any files, write your new meta description here. It is much easier to plan the text first than to do it inside the code editor. Follow every rule below.

Rule 1 — Keep it as close to 160 characters as possible

Google displays approximately 920 pixels of description text on desktop. That works out to roughly 150–160 characters. Under 70 characters wastes the opportunity. Over 160 characters and Google cuts it off with "…".

To count characters: open Notepad++ (Windows) or TextEdit (Mac), type your description, and look at the status bar at the bottom — it shows the character count. Aim for between 150 and 160.

Rule 2 — Include your primary keyword naturally

Google bolds keywords in meta descriptions that match what the user searched for. This makes your result stand out visually in search results. Include your primary keyword once in the description — but write it naturally, not forced.

❌ Keyword stuffed
Plumber Manchester plumber emergency plumber Manchester cheap plumber Manchester call now plumber.
✅ Natural and compelling
Emergency plumber in Manchester available 24/7. No call-out fee, fast response guaranteed. Call now for a free quote.

Rule 3 — End with a call to action

A call to action tells the user exactly what to do next — "Call now", "Get a free quote", "Read more", "Shop now". Pages with a clear call to action in the description consistently get higher click-through rates than those without.

Rule 4 — Every page must have a unique meta description

Never copy the same description across multiple pages. Each page is about something different — its description should reflect that. Duplicate meta descriptions are flagged by Google as a quality issue.

Rule 5 — Make it relevant to the page content

Your meta description must accurately describe what is on the page. If someone clicks expecting one thing and finds another, they will immediately leave — increasing your bounce rate and damaging your rankings over time.

Write your description now before continuing

Format: [Primary keyword] — [Benefit or detail]. [Call to action]. Example (156 characters): Emergency plumber in Manchester available 24/7. No call-out fee, fast response guaranteed. Call now for a free same-day quote. Character count: 126 ✅
💡 Not sure what your primary keyword is? Ask yourself: if someone is looking for exactly this page on Google, what words would they type? That phrase is your primary keyword.

4 Find your meta description in Notepad++ and fix it

You now know what your new meta description should say. In this section you will open your HTML file in Notepad++ and find the meta description tag inside it.

Step 1 — Work out which file to edit

Page you are fixingFile to look for in FileZilla
Your homepageindex.html inside your httpdocs or public_html folder
An about page at yourdomain.com/aboutabout.html or a folder called about containing index.html
Any other pageThe file name usually matches the last part of the URL
  1. 1 Open FileZilla and connect to your server Fill in the four boxes at the top — Host, Username, Password, leave Port blank — and click Quickconnect. If you are not sure of your details see the Before You Start guide linked above.
  2. 2 Navigate to your website folder on the right panel Double-click httpdocs (Plesk) or public_html (cPanel). You will see your website files listed.
  3. 3 Download a backup copy first Find the file you need to edit, for example index.html. Right-click it and choose Download. In the left panel find the downloaded file, right-click it, choose Rename, and rename it to index-backup.html. This is your safety net — if anything goes wrong you can re-upload the original.
  4. 4 Download the working copy to your Desktop Right-click the same file in the right panel again and choose Download. Make sure your Desktop is selected in the left panel first so it saves somewhere easy to find.
  5. 5 Open the file in Notepad++ Open Notepad++. Go to File → Open. Navigate to your Desktop, click on the HTML file you just downloaded, and click Open. The code opens in the editor. Do not worry about most of it — you only need to find one small part.
  6. 6 Use Find to locate the meta description instantly Press Ctrl + F on your keyboard. A search box appears at the bottom of Notepad++. Type meta name="description" and press Enter. Notepad++ jumps straight to that line. You will see something like this:
    <meta name="description" content="Welcome to our website." />
    The text inside content="..." is your current meta description. In this example it just says "Welcome to our website." — which tells Google and potential visitors nothing useful about the page.
  7. 7 What if there is no meta description tag at all? If the search finds nothing, your meta description is completely missing. Find the line that says <title> instead. Click at the end of the closing </title> tag and press Enter to create a new blank line. You will type your new meta description tag on that line — see Step 8.
  8. 8 Replace or add your new meta description Click inside the content="..." section and select the old text between the quote marks. Delete it and type your new description. The result should look like this (with your own words):
    <meta name="description" content="Emergency plumber in Manchester available 24/7. No call-out fee, fast response guaranteed. Call now for a free quote." />
    ⚠️ Do not delete meta name="description" or content= or the quote marks. Only replace the text between the quote marks inside content="...". If you accidentally delete more, press Ctrl + Z immediately to undo.
  9. 9 Double-check your work before saving Look at the line you just edited. Check:
    • It starts with <meta name="description" content="
    • Your new description text is inside the quote marks
    • It ends with " />
    • The character count is between 150 and 160
    • There are no line breaks inside the content attribute
  10. 10 Save the file Press Ctrl + S on your keyboard. The red dot on the file tab at the top of Notepad++ disappears — this means the file is saved and ready to upload.

5 Upload your edited file back to your server

Your file is saved on your computer but your website has not changed yet. You need to upload the edited file back to your server using FileZilla.

  1. 1 Switch back to FileZilla Click on the FileZilla window in your taskbar. If it has disconnected, fill in the boxes again and click Quickconnect.
  2. 2 Make sure the right panel shows your website folder The right panel should show httpdocs or public_html. If it shows just / double-click into the correct folder.
  3. 3 Find your edited file in the left panel Navigate to your Desktop in the left panel. You should see the edited file there.
  4. 4 Upload the file Right-click the file in the left panel and choose Upload. FileZilla will transfer the file to your server. A dialog box may appear asking if you want to overwrite the existing file — click OK or Overwrite. When the progress bar at the bottom disappears the upload is complete.
  5. 5 Check the change is live Open a new browser tab and go to your website page. Right-click anywhere on the page and choose View Page Source. Press Ctrl + F and search for meta name="description". You should see your new description exactly as you typed it.
💡 Want to see how it looks in Google? Go to AIPageSEO and run the audit again on your page. It will show you your new meta description exactly as Google sees it, including a SERP preview.

6 Tell Google about your new meta description

Google does not instantly know you have made a change. You can speed this up using Google Search Console.

If you already have Google Search Console set up

  1. 1 Log in to Google Search Console Go to https://search.google.com/search-console and sign in with your Google account.
  2. 2 Use the URL Inspection tool At the top of the screen there is a search bar. Type in the full URL of the page you just edited, for example https://yourdomain.com, and press Enter.
  3. 3 Click Request Indexing Click the button that says Request Indexing. Google will add your page to its crawl queue. A message will appear confirming the request — click OK.
  4. 4 Wait 24–48 hours After 24–48 hours search Google for your page and check whether your new meta description appears. Note: Google sometimes writes its own description even when yours is correct — this usually means it feels the page content does not match the description you wrote.

If you do not have Google Search Console yet

Google Search Console is a free tool every website owner should have. Without it, simply wait a few days and then search Google for a unique phrase from your new meta description. If it appears in the search result snippet, Google has picked up the change.

✅ Tutorial complete — your meta description is fixed and Google has been notified.

7 Common mistakes to avoid

These are the most frequent errors people make when editing meta descriptions. Read through them so you do not make the same ones.

  1. Deleting the attribute name or quote marks If you accidentally delete name="description" or content= or the surrounding quote marks, the tag will stop working. If this happens press Ctrl + Z immediately to undo.
  2. Going over 160 characters Google will cut your description off with "…" mid-sentence if it is over 160 characters. Always count your characters before saving. Aim for 150–160.
  3. Using the same description on every page Every page needs a unique meta description that accurately describes that specific page. Duplicate descriptions are flagged by Google as a quality issue.
  4. Forgetting to save before uploading If you forget to press Ctrl + S in Notepad++ before going back to FileZilla, you will upload the old version. Always check the red dot on the tab is gone before uploading.
  5. Expecting instant Google results Even after submitting a Request Indexing in Google Search Console, it can take 24–72 hours for the change to appear in search results. Check once the next day — not every 10 minutes.
  6. Google rewrites your description anyway Sometimes Google ignores your meta description and writes its own. This usually means your description does not closely match the actual content on the page. Make sure your description accurately reflects what is on the page and Google will use it.
Written by
John
Founder, AIPageSEO

I built AIPageSEO because every SEO audit tool I tried was either guesswork from an AI, Fake, or buried the things that cannot do their job. AIPageSEO is my answer — a no-sign-up platform with 75+ tools covering Core Web Vitals, E-E-A-T, schema generation, and AEO visibility for AI search engines like ChatGPT and Perplexity. I write these beginner guides because I remember exactly what it felt like to not know where to start — and I believe nobody should have to figure this out alone. Join and try our free tools then decide if you should have a bronze plan