What exactly is a meta tag?
A meta tag is a short snippet of HTML code placed inside the <head> section of a webpage. Users never see meta tags directly on the page — they're invisible in the browser. But search engines and social platforms read them constantly.
The most important meta tags for SEO are:
Title tag — shown as the blue clickable headline in Google search results.
Meta description — the short paragraph under the title in search results.
Robots meta tag — tells Google whether to index the page or follow its links.
Canonical tag — tells Google which URL is the "official" version of a page.
Here's what a basic set looks like in HTML:
<title>How to Bake Sourdough Bread — BreadLab</title>
<meta name="description" content="Step-by-step guide to baking your first sourdough loaf at home, including starter tips and timing." />
<link rel="canonical" href="https://breadlab.com/sourdough-guide" />Why does Google care about the title tag?
The title tag is the single most important on-page SEO element. It tells Google what your page is about in one concise phrase. Google uses it to:
- Understand the topic of the page.
- Display it as the headline in search results (though Google sometimes rewrites it).
- Use it as a signal for ranking.
Best practices for title tags:
- Keep it between 50–60 characters (anything longer gets cut off in search results).
- Put your main keyword near the beginning.
- Add your brand name at the end, separated by a dash or pipe.
- Make it unique — every page on your site should have a different title.
Bad example: Home | My Website
Good example: Sourdough Bread Recipe for Beginners — BreadLab
What about the meta description?
The meta description doesn't directly affect your ranking — Google confirmed this long ago. But it still matters enormously because it affects your click-through rate (CTR).
When someone searches on Google and your result appears, the meta description is the preview text that convinces them to click your link instead of the one above or below it.
Best practices for meta descriptions:
- Aim for 120–160 characters.
- Include your main keyword naturally — Google bolds matching words.
- Write it like ad copy: what will the user get if they click?
- End with a subtle call-to-action if it fits the page.
Bad: This page is about bread. We have lots of bread recipes here.
Good: Learn how to bake your first sourdough loaf in 7 steps. Includes a foolproof starter recipe and timing guide.
The robots meta tag — when to use it
The robots tag controls indexing. Most pages should just be indexed normally, so you often don't need this tag at all. But there are cases where you want to control it:
<meta name="robots" content="noindex">— Tells Google NOT to show this page in search results. Use for thank-you pages, admin pages, duplicate content.<meta name="robots" content="nofollow">— Tells Google not to follow the links on this page.<meta name="robots" content="index, follow">— The default. Explicitly tells Google to index the page and follow its links.
Common mistake: Accidentally leaving a noindex tag on an important page after development. Always check this on every live page.
The canonical tag — avoiding duplicate content
Imagine your homepage can be reached at four different URLs:
- https://example.com
- https://www.example.com
- https://example.com/
- https://example.com/?ref=social
From a user's perspective, these are the same page. But Google sees them as four separate pages competing with each other. This dilutes your ranking power.
The canonical tag solves this:
<link rel="canonical" href="https://example.com" />This tells Google: "No matter how someone arrived here, this URL is the master version. Give all the SEO credit to this URL."
Key rules:
- Always self-reference canonicals (every page should have a canonical pointing to itself, or to its preferred version).
- If you have paginated pages (page 1, page 2), each should have its own canonical — not all pointing to page 1.
- Check for canonical issues on every important page, especially after site migrations.
Missing or broken meta tags — what goes wrong
Here's what happens when meta tags are missing or wrong:
No title tag: Google picks a title itself — often the first H1 on the page, the domain name, or something completely random. You lose control of how your result looks.
No meta description: Google auto-generates a snippet from the page content. It's usually a random paragraph, not a persuasive preview.
Duplicate titles across pages: Google can't tell pages apart, which dilutes ranking signals.
Wrong robots tag: A single noindex left on a page accidentally can completely remove it from Google's index.
Hawk Eye does this instantly
Hawk Eye's SEO Overview module instantly shows you the title tag (with character count and a pass/fail indicator), the meta description (with length check), the canonical URL, and the robots tag — all on the current page. Open any competitor page and run Hawk Eye to see exactly how their meta tags are structured.
Add Hawk Eye to Chrome — FreeKey Takeaways
- The title tag is the most important on-page SEO element — keep it 50–60 characters with your keyword near the front.
- Meta descriptions don't affect ranking directly but dramatically affect how many people click your result.
- Use the canonical tag to tell Google which URL is the official version of a page.
- A noindex robots tag will remove a page from Google entirely — always verify important pages don't have it accidentally.
- Every page needs a unique title and description.