Whats the best semantic default/starting layout for html5?

Posted by John Isaacks on Stack Overflow See other posts from Stack Overflow or by John Isaacks
Published on 2010-05-26T13:00:07Z Indexed on 2010/05/26 13:01 UTC
Read the original article Hit count: 198

Filed under:
|
|

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?

© Stack Overflow or respective owner

Related posts about html

Related posts about best-practices