HTML <meta> scheme Attribute Last Updated : 04 Oct, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report The HTML <meta> scheme attribute specifies the metadata value's format or intended interpretation. It's used in conjunction with other attributes like name or http-equiv to define how content is processed. Syntax<meta scheme="format | URI">Attribute Values:format/URI: It is used to define the format (or points to an URI that contains the information) of the value inside the content attribute. Examples: In this example, we demonstrate the use of the meta tag with a scheme attribute. It includes metadata about "Meta Tags". html <!DOCTYPE html> <html> <head> <meta name="keywords" content="Meta Tags, Metadata" scheme="ISBN" /> </head> <body> <center> <h1>GeeksForGeeks</h1> <h2> Meta scheme attribute</h2> <p>Hello GeeksforGeeks!</p> </center> </body> </html> Output:Supported Browser The browsers supported by HTML <meta> scheme Attribute are listed below: Google ChromeEdge FirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML name Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML | <meta> name Attribute 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: 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 | <th> scope Attribute The HTML <th> scope Attribute is used to specify the header cell is used for header row, column, colgroup or rowgroup. This attribute does not display any visual effect on the browser but it is used for screen readers. Syntax: <th scope="col | row | colgroup | rowgroup"> Attribute Values 1 min read HTML <a> type Attribute The HTML <a> type attribute specifies the MIME type of the linked document. It is not widely used, the type attribute can help browsers to understand the type of content that is being linked. It can be beneficial for certain applications and optimizations.Syntax<a type="media_type">Attri 1 min read HTML <meta> content Attribute HTML <meta> content Attribute provides the value associated with either the http-equiv or name attribute, offering metadata information such as character encoding, viewport settings, or other document-related data. Syntax: <meta content="text">Attribute Values: It contains single-value t 1 min read HTML | <th> abbr Attribute The HTML <th> abbr Attribute is used to specify the shorter version of content in header cell. It does not describe any visual effect but it is used by screen readers. Syntax: <th abbr="text"> Attribute Values: text: It contains the short description of header cell content. Example: html 1 min read Like