Head Metadata

๐ŸŒ HTML5 ๐ŸŸข Chapter 23 of 37 ๐Ÿ“‚ Phase 09: Metadata & SEO ๐Ÿ“… 2026 Edition
๐Ÿ“Œ Covered in this chapter: <title> ยท meta charset & viewport ยท Description & Author ยท Robots & Theme Color ยท Favicon ยท Canonical URL ยท Open Graph & Social Sharing
Welcome to Phase 9 (Chapter 23): Head Metadata! Master configuring document metadata inside the <head> section for search engine indexing and social sharing card previews.
1Complete Metadata Template
HTML โ€” Metadata & Open Graph Template โ–ถ Run in HTML Editor
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="Learn HTML5 step by step.">
  <meta name="theme-color" content="#f97316">
  <title>HTML5 Masterclass | Our Compiler</title>
  <link rel="icon" href="/favicon.png">
  <link rel="canonical" href="https://www.ourcompiler.com/blog-html.html">

  <!-- Open Graph Social Meta Tags -->
  <meta property="og:title" content="HTML5 Masterclass">
  <meta property="og:description" content="Learn HTML5 with live code examples.">
  <meta property="og:image" content="https://www.ourcompiler.com/og-banner.png">
</head>
OC
Written by Our Compiler Technical Editorial Team
Reviewed for accuracy & tested on HTML5 Standards ยท Last updated August 2026