English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Reference Manual

Complete List of HTML Tags

HTML meta scheme attribute

The scheme attribute specifies the scheme (format or URI) used to interpret the content attribute values.

 HTML <meta> tag

Online Example

Use the scheme attribute to define the format of the content attribute:

<!DOCTYPE html>
<html>
<head>
<title>HTML: <meta> scheme Attribute - Basic Tutorial Website(oldtoolbag.com)</title>
<meta name="date" content="2019-11-02" scheme="YYYY-MM-DD">
<meta name="identifier" content="0-1345-7634-8" scheme="ISBN">
</head>
<body>
<h1>My Website</h1>
<p>Some text.../p>
</body>
</html>
Test it out ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

All major browsers support the scheme attribute.

Definition and Usage

HTML5 The <meta> scheme attribute is not supported.

The scheme attribute specifies the scheme (format or URI) used to interpret the content attribute values.

Syntax

<meta scheme="format|URI">

attribute value

valuedescription
format/URIDefine the format (or point to a URI containing information) of the value within the content attribute.
 HTML <meta> tag