The meta element with a name attribute represents document metadata in the form of name/value pairs.
empty (void element)
global attributes & name★ & content★
application-name",
        the value of the
        content
        attribute 
        must
        be a string representing the name of the Web application
        that the page represents.author",
        the value of the
        content
        attribute 
        must
        be a string that gives the name of one of the authors of
        the document.description",
        the value of the
        content
        attribute 
        must
        be a string that describes the page.generator",
        the value of the
        content
        attribute 
        must
        be a string that identifies the software
        used to generate the document.keywords",
        the value of the
        content
        attribute 
        must
        be a
        set of comma-separated strings,
        each of which is a keyword relevant to the document.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;
};