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

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML meta content Eigenschaft

Der content-Attribute gibt Werte an, die mit http-Verknüpfte Werte der Attributes equiv oder name.

 HTML <meta> Tag

Online-Beispiel

Beschreibt Metadaten im HTML-Dokument:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML:<meta> charset Eigenschaft - Basic Tutorial Website(oldtoolbag.com)</title>
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML5,CSS3,PHP, JAVA, C++">
</head>
<body>
<p>This document's meta describes the document and its keywords.</p>
</body>
</html>
Test See ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

All major browsers support the content attribute.

Definition and Usage

The content attribute provides information-Values related to the equiv or name attribute.

HTML 4.01 With HTML5Differences

None.

Syntax

<meta content="text">

Attribute Value

ValueDescription
textContent of meta information.
 HTML <meta> Tag