SHARE
Facebook X Pinterest WhatsApp

Understanding the New Way to Present Content on the Web- Using “Article” Markup Element in your HTML Pages

Written By
thumbnail
Vipul Patel
Vipul Patel
Aug 7, 2013

8/6/13

As discussed in an earlier article on HTMLGoodies, HTML5 introduced a lot of new markup elements to enable rich web authoring.

The “article” markup element is one of the new sectioning elements introduced in HTML5.

The HTML5 specification defines “article” markup element as a self-contained composition in a document, page that is independently reusable in syndication. 

It can be used for a newspaper article, a blog entry or a forum post, or any independent item of content.

 

Few notes facts about “article” markup element

  •       Article markup element can be used where flow content is expected.
  •      The “article” markup elements are global attributes.
  •      The “article” element uses “HTMLElement”.
  •      An “article” markup element can have headers
  •       An “article” markup element can have footers.
  •        “Article” markup elements can be nested.
  •       When “article” elements are nested, the nested elements should be principally related to the parent article. A classic example would be comments on a blog post are related to the blog post.
  •       “Article” markup elements can work with “section” markup elements. However, note that “article” is used when the content is self-contained. HTML5 specification does not dictate that “section” element should have the content which is self-contained.

 

Using “article” markup element

Simply put, a simple HTML5 webpage using article markup element looks as under.


<!DOCTYPE html>

<html>

<meta charset=”utf-8″>

<title>Article sample</title>

<body>

    <article>

        <header>

            <h1>Article sample</h1>

            <p>The First sample using Article markup element</p>

        </header>

        <footer>

            <h1></h1>

            <p>HTML Goodies</p>

        </footer>

    </article>

</body>

</html>

 

This will result in a display on the web page as under:

Nested “article” markup elements need to put under a section element.

<!DOCTYPE html>

<html>

<meta charset=”utf-8″>

<title>Article sample 2</title>

<body>

    <article>

        <header>

            <h1>Article sample using nested articles</h1>

            <p>The Second sample using Article markup element</p>

        </header>

        <footer>

            <h1></h1>

            <p>HTML Goodies</p>

        </footer>

        <section>

            <h1>Comments</h1>

            <article id=”comment1″>

                <footer>

                    <p>Posted by: Commenter 1</p>

                    <p><time datetime=”2013-07-26″>1 day ago</time></p>

                </footer>

                <p>This is a a very trivial example</p>

            </article>

            <article id=”comment2″>

                <footer>

                    <p>Posted by: Commentor 2</p>

                    <p><time datetime=”2013-07-27″>1 minute ago</time></p>

                </footer>

                <p>Nah, this looks like an advanced concept.</p>

            </article>

        </section>

    </article>

</body>

</html>

 

The webpage above will look as under:

If you are having trouble following along, you can download the sample HTML5 files here.

 

Summary

In this article, we learned about using “article” markup element to represent self-contained information.

 

About the author

Vipul Patel is a Program Manager currently working at Amazon Corporation. He has formerly worked at Microsoft in the Lync team and in the .NET team (in the Base Class libraries and the Debugging and Profiling team). He can be reached at vipul.patel@hotmail.com 

Recommended for you...

Best VR Game Development Platforms
Enrique Corrales
Jul 21, 2022
Best Online Courses to Learn HTML
Ronnie Payne
Jul 7, 2022
Working with HTML Images
Octavia Anghel
Jun 30, 2022
Web 3.0 and the Future Of Web Development
Rob Gravelle
Jun 23, 2022
HTML Goodies Logo

The original home of HTML tutorials. HTMLGoodies is a website dedicated to publishing tutorials that cover every aspect of being a web developer. We cover programming and web development tutorials on languages and technologies such as HTML, JavaScript, and CSS. In addition, our articles cover web frameworks like Angular and React.JS, as well as popular Content Management Systems (CMS) that include WordPress, Drupal, and Joomla. Website development platforms like Shopify, Squarespace, and Wix are also featured. Topics related to solid web design and Internet Marketing also find a home on HTMLGoodies, as we discuss UX/UI Design, Search Engine Optimization (SEO), and web dev best practices.

Property of TechnologyAdvice. © 2025 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.