Article tag is used to represent the main component of a page. What you are reading now, is the content present inside article tag!!
It should be used inside HTML body tags as shown here.
The content of article tag will be unique to the page.
Every page represents its own content whereas in case of header and nav tags it varies from each page.
The content can be a news story, forum post, blog post, user-submitted comment, gadget, a magazine article or any other independent item.
Earlier to the introduction of article tag in HTML 5, the content is added inside div tags.
When you upload a webpage with article tag, the content from it will be crawled by the search engines. If you want your webpage to get displayed in organic search results then you should properly curate your contents.
Content from title tag and article tag brings traffic to your webpage.
Header and footer tags usage inside article tag.
It should be used inside HTML body tags as shown here.
<!DOCTYPE html> <html> <head> </head> <body> <article> </article> </body> <html>
The content of article tag will be unique to the page.
Every page represents its own content whereas in case of header and nav tags it varies from each page.
The content can be a news story, forum post, blog post, user-submitted comment, gadget, a magazine article or any other independent item.
Earlier to the introduction of article tag in HTML 5, the content is added inside div tags.
When you upload a webpage with article tag, the content from it will be crawled by the search engines. If you want your webpage to get displayed in organic search results then you should properly curate your contents.
Content from title tag and article tag brings traffic to your webpage.
Header and footer tags usage inside article tag.
<article> <header> <h1>Apple</h1> <p>Published: <time pubdate="pubdate">2014-11-09</time></p> </header> <p><b>Narendra Damodardas Modi</b> is the 15th prime minister of India</p> <footer> <p><small>Content should not be copyrighted</small></p> </footer> </article>