As we all know there is a new version of HTML5 which is being adopted very quickly by the some of the tools and application,There is little difference in this new version compare to traditional HTML. Below are some new elements for HTML5
<!doctype html>
<header>
</header>
<nav>
</nav>
<section>
</section
New HTML5 format to with use of above tags
<!doctype html>
<html>
<head></head>
<body>
<header>
</header>
<nav>
</nav>
<section>
<article>
</article>
<aside>
</aside>
</section>
<footer>
</footer>
</body>
</html>