Page structure

Every page is the same shell: a header, a main and a footer, with any section navigation as nav siblings between the header and main. The document's outline lives inside main.

<body>
  <header> … site navigation … </header>
  <nav>    … section navigation … </nav>
  <main>   … the page itself   … </main>
  <footer> … site footer        … </footer>
</body>
The body shell of header, nav, main and footer

Body

One header, one main, one footer, as direct children of body. That gives you the banner, main and contentinfo landmarks for free. Any section navigation sits between the header and main as nav siblings, zero or more.

<body>
  <header> … site navigation … </header>
  <nav>    … section navigation … </nav>   <!-- zero or more -->
  <main>   … the page itself  … </main>
  <footer> … site footer       … </footer>
</body>
Body children with optional nav siblings noted

Main

Inside main, a single h1 names the page, not the site, which is the brand. Sections open with a bare heading, one level deeper each time you nest (h1h2h3). There is no header element inside a section, and layout containers never use the landmark tags either.

<main>
  <h1>Page title</h1>
  <section>
    <h2>A section</h2>
    <section>
      <h3>A subsection</h3>
    </section>
  </section>
</main>
Main with h1 and nested sections by heading level