CSS Portal

HTML <article> Tag

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!

Description

The <article> tag represents a self-contained block of content that is intended to be meaningful and reusable on its own. It is commonly used for content such as blog posts, news articles, forum threads, user comments, product cards, or any standalone piece of information that could be shared independently from the rest of the page.

An <article> typically contains a complete piece of content, including headings, paragraphs, images, media, and other related elements. Because it represents an independent unit, it should still make sense if viewed outside its original context - for example, when syndicated, shared on social platforms, or indexed by search engines.

This element also plays an important role in semantic HTML, helping browsers, assistive technologies, and search engines better understand the structure and purpose of a webpage. Screen readers can use the <article> tag to improve navigation, while search engines can more accurately identify meaningful content sections.

The <article> element can be nested inside other elements such as <section>, <main>, or even another <article> when content is hierarchically related. For example, a blog post may be an <article> that contains multiple comment <article> elements within it.

Using the <article> tag correctly improves accessibility, content organization, and SEO, making webpages easier to navigate, understand, and maintain.

Properties

Permitted Parents
Any element that accepts flow content. Note that an <article> element must not be a descendant of an <address> element.
Content
Block, inline and text
Start/End Tags
Start tag: required, End tag: required

Example

<article>
<h3>CSSPortal New Design</h3>
<p>CSS Portal has had a complete new design added to the site, we are currently in the process of updating all content.</p>
</article>

Attributes

None

Global Attributes

The <article> tag also supports the Global Attributes in HTML5

Event Attributes

The <article> tag also supports the Event Attributes in HTML5

Browser Support

The following information will show you the current browser support for the HTML <article> tag. Hover over a browser icon to see the version that first introduced support for this HTML tag.

This tag is supported by all modern browsers.
Desktop
Chrome
Edge
Firefox
Opera
Safari
Tablets & Mobile
Chrome Android
Firefox Android
Opera Android
Safari iOS
Samsung Internet
Android WebView
-

Last updated by CSSPortal on: 25th December 2025

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!