Webmaster Forums - Website and SEO Help

Web Development and Design => Website Design and HTML => Topic started by: Delois on December 19, 2011, 03:36:47 AM

Title: Web page coding defined with new HTML5
Post by: Delois on December 19, 2011, 03:36:47 AM
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>