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

HTML-Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <article> Tag

Der HTML <article>-Tag ist ein HTML5Element, das die unabhängigen Bestandteile eines HTML-Dokuments definiert. Dieses Tag wird auch als <article>-Element bezeichnet.

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>Grundlagen-Tutorial-Website(oldtoolbag.com)</title> 
</head>
<body>
<article>
    <h1>Artikelüberschrift</h1>
    <p>Text angezeigt unter dem Artikel</p>
</article>
</body>
</html>
Test to see ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

IE 9+, Firefox, Opera, Chrome and Safari all support the <article> tag.

Note: IE 8 or earlier versions of IE browsers do not support the <article> tag.

Definition and Usage

The HTML <article> element is found within the <body> tag and is an HTML5elements.

The <article> tag defines independent content.

The content defined by the <article> tag must be meaningful and must be independent of the rest of the document.

The <article> tag can be used for any of the following: forum posts, blog entries, magazine articles, newspaper articles, user comments, or independent content items.

HTML 4.01 and HTML5Differences between

The <article> Tag is a part of HTML5 New Tag.

Global Attributes

Support for <article> Tag Global Attributes of HTML.

Event Attributes

Support for <article> Tag HTML Event Attributes.