1. <header>

The <header> element represents a group of introductory or navigational aids.
It may contain some heading elements and other elements like a logo, wrapped section's header, a search form and so on.
Example
  1. <header>
  2. <h1>Hello World </h1>
  3. <p>Its time to start HTML5 </p>
  4. </header>

2. <nav>

The <nav> element is intended only for a major block of navigation links.
So we can say that it represents a section of the document intended for navigation (like a menu).
Example
nav.html
  1. <nav>
  2. <ul>
  3. <li><a href="index.html">Home</a></li>
  4. </ul>
  5. </nav>
index.html
  1. <html>
  2. <head>
  3. My home page Abhi
  4. </head>
  5. <body>
  6. <p>Try it at home</p>
  7. <nav>
  8. <ul>
  9. <li><a href="nav.html" />Back</li></ul>
  10. </nav>
  11. </body>
  12. </html>

3. <section>

It represents a generic document or application section. It can be used together with the h1, h2, h3, h4, h5, and h6 elements to indicate the document structure. (Just a logical grouping such as a contents section.)
Example
  1. <html>
  2. <body>
  3. <section>
  4. <h1>Good Morning</h1>
  5. <p>
  6. Hello world
  7. </p>
  8. </section>
  9. <section>
  10. <h1>Good Evening </h1>
  11. <p>
  12. Bye Bye World.</p>
  13. </section>
  14. </body>
  15. </html>

4. <article>

It represents an independent piece of contents of a document, such as a blog entry or newspaper article.
Example
  1. <html>
  2. <body>
  3. <article>
  4. <h1>HTML5 with Abhijeet</h1>
  5. <p>Today we will start HTML5 </p>
  6. </article>
  7. <article>
  8. <h1>HTML5 news part with Abhijeet</h1>
  9. <p>Great News for you.. </p>
  10. </article>
  11. </body>
  12. </html>

5. <aside>

It represents a piece of content that is only slightly related to the rest of the page. (Usually a sidebar, but could be another type of content that isn't directly related to the main content.)
Example
  1. <html>
  2. <head><title>HTML5 with Abhijeet</title>
  3. <style type="text/css"">
  4. aside
  5. {
  6. font-style:italic;
  7. color:cyan;
  8. float:right;
  9. width:80%;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <div>
  15. <aside>Its raining...
  16. </aside>
  17. <p>Hello world</p>
  18. </div>
  19. </body>
  20. </html>

6. <footer>

Represents a footer for a section and can contain information about the author and copyright information.
Example
  1. <html>
  2. <body>
  3. <footer>
  4. <p>written by: Abhijeet Singh</p>
  5. <p>Contact information: <a href="mailto:[email protected]">[email protected]</a>.</p>
  6. </footer>
  7. </body>
  8. </html>