Contact Number
Email Address

article

article

Definition and Usage

The <article> tag specifies independent, self-contained content. The HTML <article> tag is used to represent an article. More specifically, the content within the <article> tag is independent from the other content on the site (even though it could be related). By "independent" I mean that its contents could stand alone, for example in syndication.The HTML <article> element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). Examples of article content could include a forum post, a newspaper article, a blog entry, or a user-submitted comment.

Syntax

<body>
<article>
  <h1>The article title</h1>
  <p>This is the contents of the article element.</p>
</article>
</body>