HTML | <meta> name Attribute Last Updated : 06 Jun, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report The HTML <meta> name Attribute is used to specify the name for the metadata. This attribute is used to define the name for the information/value of the content attribute. Note: If the http-equiv attribute is set, the name attribute should not be set. Syntax: <meta name="value"> Examples: html <!DOCTYPE html> <html> <head> <meta name="keywords" content="Meta Tags, Metadata" /> </head> <body> <center> <h1>GeeksForGeeks</h1> <h2> Meta name attribute</h2> <p>Hello GeeksforGeeks!</p> </center> </body> </html> Output: Supported Browser: The browsers supported by HTML <meta> name Attribute are listed below: Google Chrome 1 and aboveEdge 12 and aboveInternet Explorer 6 and aboveFirefox 1 and aboveOpera 12.1 and aboveSafari 4 and above Comment More infoAdvertise with us Next Article HTML | name Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML | <meter> name Attribute The HTML <meter> name Attribute is used to specify the name attribute of meter element. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript.Syntax: <meter name="name"> Attribute Values: It contains a single value name which describe 1 min read HTML | <map> name Attribute The HTML <map> name Attribute is used to specify the name of the mapping image, This attribute is associated with the <img> usemap attribute and created the relationship between the image and the map. Syntax: <map name="mapname"> Attribute Values: name: it specify the name of the i 1 min read HTML <a> name Attribute The HTML anchor name attribute is used to specify the name for an <a> element. It is used to reference the form data after submitting the form or to reference the element in JavaScript. Note: The <a> name attribute is not supported by HTML5. Syntax<a name="name"> Attribute Values:A 1 min read HTML | <input> name Attribute The HTML <input> name Attribute is used to specify a name for an <input> element. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript. Syntax: <input name="name"> Attribute Values: It contains a single value name which describ 1 min read HTML | <iframe> name Attribute The HTML iframe name Attribute is used to specify a reference for an <Iframe> Element. The name attribute is also used as a reference to the elements in a Javascript. Syntax: <iframe name="name">Attribute Values: name: It specify the name for the Iframe element.UsageThe name attribute as 1 min read HTML | <form> name Attribute The HTML <form> name Attribute is used to specify the name of a form Element. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript. Syntax: <form name="name"> Attribute Values: It contains a single value name which describes the name 1 min read Like