WCAG 1.0 Double A Checkpoint 13.2
Skip Quick Links
Quick Links:
- Checkpoint 2.2
- Checkpoint 3.1
- Checkpoint 3.2
- Checkpoint 3.3
- Checkpoint 3.4
- Checkpoint 3.5
- Checkpoint 3.6
- Checkpoint 3.7
- Checkpoint 5.3
- Checkpoint 5.4
- Checkpoint 6.4
- Checkpoint 6.5
- Checkpoint 7.2
- Checkpoint 7.3
- Checkpoint 7.4
- Checkpoint 7.5
- Checkpoint 9.2
- Checkpoint 9.3
- Checkpoint 10.1
- Checkpoint 10.2
- Checkpoint 11.1
- Checkpoint 11.2
- Checkpoint 12.2
- Checkpoint 12.3
- Checkpoint 12.4
- Checkpoint 13.1
- Checkpoint 13.2
- Checkpoint 13.3
- Checkpoint 13.4
“Provide metadata to add semantic information to pages and sites.”
Metadata is information about data. The <meta> element can specify metadata for a document including keywords, and information about the author.
Examples
<meta name="author" content="John Doe" />
<meta name="copyright" content="© 1997 Acme Corp." />
<meta name="keywords" content="corporate,guidelines,cataloging" />
<meta name="date" content="1994-11-06T08:49:37+00:00" />
<meta name="copyright" content="© 1997 Acme Corp." />
<meta name="keywords" content="corporate,guidelines,cataloging" />
<meta name="date" content="1994-11-06T08:49:37+00:00" />
In the following example, the author's name is given and is identified as being French:
<meta name="Author" lang="fr" content="Arnaud Le Hors" />
The <meta> element is a generic mechanism for specifying metadata. However, some HTML elements and attributes already handle certain pieces of metadata and may be used by authors instead of <meta> to specify those pieces. These are:
- the <title> element
- the <address> element
- the <ins> and <del> elements
- and the title and cite attributes
Note: Meta tags provide many features which expose your content in many ways to many technologies. Refer to online resources for further reading on this subject.
