---
title: "Article element in HTML5"  
description: "In HTML5 article tag is used to show content, content can be blog, forum, newspaper etc. Article tag represents an independent section of page. The ar"  
author: "Anonymous User"  
published: 2011-07-24  
updated: 2019-09-07  
canonical: https://www.mindstick.com/articles/586/article-element-in-html5  
category: "html5"  
tags: ["html5"]  
reading_time: 1 minute  

---

# Article element in HTML5

In HTML5 <article> tag is used to show content, content can be blog, forum, newspaper etc. Article tag represents an independent section of page. The article tag specifies independent, self contained content. This is a new tag in html5. In this example I will show you that how we can use <article> tag in html page.\

##### Code:

```
<head>     <title>HTML5 Article Tag Demonstration.</title></head><body>     <h1>         This is a demo of Article tag in html5     </h1>     <article> <!--here using article tag to-->    <section>         <h2>Article Tag Example Link 1</h2>         Click to         <a href="http://www.mindstick.com/DevelopersSection.aspx">       MindStick          </a>         get more details     <p>In HTML5 <article> tag is use for to show external page content, content can be blog,<br />     form, newspaper etc.Article tag represent an independent section of page.    <br />     In this exampleI will show how we can use <article> tag in html page.</p>   </section>  </article><article>    <section>    <h2>Article Tag Example Link 2</h2>       Click to<a href="http://www.google.co.in/"> Google </a>get details       <p>Article tag is use for to show external page content,page can be    forum,newspaper etc.       </p>    </section></article></body>
```

##### Screenshot

![Article element in HTML5](https://www.mindstick.com/mindstickarticle/232f612d-e3bc-4b9a-85d1-80d872dabeff/images/955aef74-651a-4f92-ab0f-2b24239f25a2.png)

---

Original Source: https://www.mindstick.com/articles/586/article-element-in-html5

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
