The
meta
element
with a http-equiv attribute
whose value is "content-language" represents a pragma
directive that specifies a document-wide default language.
Using the meta element to specify the document-wide default language is obsolete. Consider specifying the language on the root element instead.
empty (void element)
global attributes & http-equiv="content-language"★ & content★
The meta element is a void element. A meta element must have a start tag but must not have an end tag.
any element that can contain metadata elements
interface HTMLMetaElement : HTMLElement {
attribute DOMString name;
attribute DOMString httpEquiv;
attribute DOMString content;
};