<html><head><title>A sample webpage layout using HTML5</title></head><body><header> //this header is a new tag especially for header elements.<hgroup> //this tag is also new and it contain the header elements.<h1>Header in h1</h1> //h1 and h2 are used for giving the size of characters<h2>Subheader in h2</h2> //this h1, h2 goes to h6. H6 gives the smallest size for character and h1 the largest</hgroup></header><nav> //this one is a new tag for navbar elements<ul><li><a href="#">Menu Option 1</a></li><li><a href="#">Menu Option 2</a></li><li><a href="#">Menu Option 3</a></li></ul></nav><section><article> //this one is newly introduced in <em>HTML5</em>, this contain articles<header><h1>Article #1</h1></header><section>This is a webpage layout example for <mark>“My Windows Club”</mark></section></article><article><header><h1>Article #2</h1></header><section>This article can be a long post like a blog and here you can write the main body content. </section></article></section><aside> //this one again is new and introduced in HTML5 for sidebar elements<section><h1>Links</h1><ul><li><a href="#">Link 1</a></li><li><a href="#">Link 2</a></li><li><a href="#">Link 3</a></li></ul></section><figure><img width="85" height="85"src="http://www.techulator.com/attachments/Resources/thumbs/5621-436-ataulhaque.jpg"alt="Ata Ul Haque" /><figcaption>Ata Ul Haque</figcaption></figure></aside><footer>Footer - Copyright 2012 for My Windows Club</footer></body></html>