> For the complete documentation index, see [llms.txt](https://ke-ren.gitbook.io/web-design/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ke-ren.gitbook.io/web-design/html-css-js/html-index/page-layout.md).

# Page layout

{% tabs %}
{% tab title="HTML" %}

```markup
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>My First Page</title>
  </head>
  <body>
    <header>
      This is my Website Header
      <nav>This is where the navigation links will be added</nav>
    </header>
    <main>
      This is the main content of the page
      <article>This is the article on the page</article>
      <aside>Some additional but not relevant information</aside>
      <section>Some more information about our website</section>
    </main>
    <footer>The footer of the web page</footer>
  </body>
</html>
```

{% endtab %}
{% endtabs %}
