Skip to main content

HTML Dev Docs

Pure HTML5 Developer Documentation Portal

Metadata

Published • 8 min read

Overview

meta, link, title, and document head essentials.

This page is part of the HTML Dev Docs portal, a comprehensive demonstration of HTML5 semantic markup without CSS or JavaScript.

The HTML Living Standard defines the semantics of HTML elements and their attributes.

Document Metadata

Essential <head> elements demonstrated on every page:

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Page description">
<meta name="author" content="HTML Dev Docs">
<meta name="keywords" content="HTML5, documentation">
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml">
<title>Page Title | HTML Dev Docs</title>