Core HTML Meta Tags: Title, Description, Viewport, and Canonical
- • HTML meta tags reside inside the <head> element, providing search engine crawlers and web browsers with structured page metadata:
- • <title>: The single most influential on-page SEO factor. Keep between 50-60 characters.
- • <meta name="description">: The summary snippet rendered in Google SERP. Keep between 120-155 characters.
- • <link rel="canonical">: Specifies the authoritative master URL, preventing duplicate content penalties caused by query parameters or tracking tags.
- • <meta name="robots">: Instructs search bots on indexing (index/noindex) and link following (follow/nofollow).
<!-- Baseline Production HTML <head> Meta Tags -->
<title>WebCraftKit – Fast, Private Developer Utilities</title>
<meta name="description" content="Free, privacy-first developer tools running 100% client-side. Format JSON, decode JWT, calculate hashes, and generate CSS box shadows." />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="canonical" href="https://webcraftkit.com/" />
<meta name="robots" content="index, follow" />