resource links

subpages

html forms

HTML notes (july)

terminology

general

code style

head

the stuff that doesn’t get displayed on the page.

semantic elements

<html>
  <head></head>
  <body>
    <header>
      <h1></h1>
      <nav></nav>
    </header>
    <main>
      <section>
        <article></article>
      </section>
    </main>
    <footer></footer>
  </body>
</html>