View video tutorial

HTML <article> Tag

HTML

The <article> tag specifies independent, self-contained content.

HTML <article> Tag


The <article> tag defines the new self-contained section in HTML5.

Uses are a forum post, a magazine or newspaper article, or a blog entry, a product card, a user submitted comment, an interactive widget or gadget, or any other independent item of content.

Global attributes

Global attributes may be applied on all elements, although some elements may have no effect on them.

<accesskey>, <class>, <contenteditable>, <contextmenu>, <data-*>, <dir>, <draggable>, <dropzone>, <hidden>, <id>, <lang>, <spellcheck>, <style>, <tabindex>, <title>, <translate>.

Learning with HTML Editor "Try it Now"

You can edit the HTML code and view the result using online editor.

Example

<h2>HTML Article tag Example</h2>
<article>
    <h2>What Is HTML</h2>
    <p>HTML (Hypertext Markup Language) is a computer language that creates most web pages and online applications.A
        hypertext is a text that is used to refer to other parts of the text, while a markup language is a series of
        symbols that the web server calls the style and structure of a document.</p>
</article>
Try it Now »

Click on the "Try it Now" button to see how it works.