SEO Meta Tags
<title> tag, meta description, canonical, robots, and how Open Graph + Twitter Cards control social share previews.
title & meta description
The <title> tag is the single most important on-page SEO element — it becomes the clickable blue link in search results. The meta description doesn't directly affect rankings but strongly influences click-through rate as the snippet text underneath.
<title>Advanced HTML Course — Semantic, SEO, APIs | BitWithBite</title> <meta name="description" content="27 free advanced HTML lessons covering semantic markup, accessibility, SEO and more.">
canonical & robots
A canonical link tells search engines which URL is the "real" one when the same content is reachable at multiple addresses (with/without trailing slash, tracking params, etc.) — preventing duplicate-content dilution. robots controls crawling and indexing behavior.
<link rel="canonical" href="https://bitwithbite.com/courses/course-html-advanced.html"> <meta name="robots" content="index, follow">
| robots value | Effect |
|---|---|
| index, follow | Normal — index this page, follow its links (the default) |
| noindex, follow | Don't show in search results, but still follow links |
| noindex, nofollow | Fully exclude — don't index, don't follow links |
Open Graph & Twitter Cards
Open Graph (og:*) tags control how a link appears when shared on Facebook, LinkedIn, Slack, and most other platforms. Twitter Cards (twitter:*) do the same specifically for X/Twitter, which doesn't always read Open Graph tags the same way.
<meta property="og:title" content="Advanced HTML Course"> <meta property="og:description" content="27 free advanced HTML lessons."> <meta property="og:image" content="https://bitwithbite.com/og.png"> <meta name="twitter:card" content="summary_large_image">
Write the full head meta block for a blog post: title, meta description, canonical link, meta robots="index, follow", og:title, og:description, og:image, and twitter:card="summary_large_image".
💡 Show hints if you're stuck
- Keep title under ~60 characters and description under ~160.