UK[ˈɑ:tɪkl] US[ˈɑ:rtɪkl]

n. Article; (in newspapers and magazines) articles, papers; clauses; [language] article

vt. To be bound by the terms of an agreement; to be bound by an agreement (or contract); to contract to accept... as an apprentice (or apprentice); to contract to hire

vi. To make an accusation, to make an accusation (or accusation) (against) ;Sign the agreement

Third person singular: articles Plural: articles Present participle: articling Past tense: articled Past participle: articled

html article tag syntax

What does the article tag do?

Function: The function of the article tag in html is to specify independent self-contained content, where the external content is a new article from an external news provider, or from The text of a blog, or text from a forum, or content from other external sources.

Description: <article> tag specifies independent self-contained content. An article should have its own meaning and it should be possible to distribute it independently of the rest of the site.

Note: Internet Explorer 8 and earlier versions do not support the <article> tag.

html article tag example

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<article>
    <h1>独孤九贱</h1>
    <p>独孤九贱是PHP中文网的朱老师发布的关于PHP的一系列教程.....</p>
</article>
</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance