Web page coding defined with new HTML5

Started by Delois, December 19, 2011, 03:36:47 AM

Delois

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>