HTML5 Reset

Out of context: Reply #7

  • Started
  • Last post
  • 17 Responses
  • pastpastdue0

    I think that's right. On my new portfolio site, <section> is the tag that contains different areas of the site. I was trying to figure out a system that would work across as many sites as possible. I realize there is semantic redundancy but I needed a container element. Basically:

    <section id="header">
    <h1>logo replacement</h1>
    <nav></nav>
    </section>
    <section id="content">
    <article></article>
    </section>
    <section id="footer">
    <footer></footer>
    </section>

    • I suppose this could all be done by a single div, in retrospect.pastpastdue

View thread