Whats the best semantic default/starting layout for html5?
- by John Isaacks
I am a little confused on how the new tags should go.
Is this correct:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
</head>
<body>
<section>
<header>
<nav></nav>
</header>
<section>
</section>
<footer>
</footer>
<section>
</body>
</html>
Or should one of the sections be an <article>? What should be the starting layout?