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

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML meta scheme Eigenschaft

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

 HTML <meta> Tag

Online-Beispiel

Verwenden Sie die scheme-Eigenschaft, um das Format der content-Eigenschaft zu definieren:

<!DOCTYPE html>
<html>
<head>
<title>HTML:<meta> scheme Eigenschaft - Grundlagen-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 see ‹/›

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 of the value within the content attribute (or point to a URI containing information).
 HTML <meta> Tag