The <article> tag in HTML is used to represent an article about any document,
page, application, or site independently.
HTML <applet> tag
HTML <applet> tag : Definition
The <applet> tag does not support in HTML5 anymore.
The <article> tag in HTML is used to represent an article about any document, page, application, or site independently.
The article tag specifies independent, self-contained content: for example, a magazine or newspaper article, or a blog entry etc..
<article> tag example
<!DOCTYPE html>
<html>
<body>
<h1>The article tag example</h1>
<article>
<p>The <article> tag in HTML is used to represent an article about any document,
page, application, or site independently.</p>
</article>
<article>
<p>The <article> tag specifies independent, self-contained content: for example,
a magazine or newspaper article, or a blog entry etc.</p>
</article>
</body>
</html>
Output:
The <article> tag specifies independent, self-contained content: for example,
a magazine or newspaper article, or a blog entry etc..