files/en-us/web/html/reference/elements/meta/name/index.md
The name attribute of the {{htmlelement("meta")}} element provides metadata in name-value pairs.
When a <meta> element has a name attribute, a content attribute defines the corresponding value.
The metadata is document-level metadata that applies to the whole page.
For example, the following <meta> tag provides a description as metadata for a document:
<meta
name="description"
content="The HTML reference describes all elements and attributes of HTML, including global attributes that apply to all elements." />
The HTML specification defines the following set of standard metadata names:
application-name
: Browsers may use this to identify the application running in the web page.
It is different from the {{HTMLElement("title")}} element, which may contain an application (or website) name, but a <title> may add contextual information like a document name or a status.
Individual pages shouldn't define their own, unique application-name.
To provide translations, use multiple <meta> tags with the lang attribute for each language:
<meta name="application-name" content="Weather Wizard" lang="en" />
<meta name="application-name" content="Mago del Clima" lang="es" />
author
<meta name="color-scheme"> is to indicate compatibility and order of preference for light and dark color modes.description
generator
keywords
content attribute contains a valid CSS {{cssxref("<color>")}}.
The media attribute with a valid media query list can be included to set the media that the theme color metadata applies to.The CSS Device Adaptation specification defines the following metadata name:
viewport
The WHATWG Wiki MetaExtensions page contains a large set of non-standard metadata names. Some of the names included are used quite commonly in practice, notably the following:
creator
googlebot
robots, is only followed by Googlebot (the indexing crawler for Google).publisher
robots
{{Specifications}}
{{Compat}}