(tagged: public HTML web dev | personal ‣ ‣ ‣ ‣ )

resource links

Learn HTML by Building a Cat Photo App | freeCodeCamp.org

general

code style

head

semantics

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

forms

<form action="url">
  <input id="userinput" name="user" type="text" required>
  <fieldset id="binarychoice">
    <legend>binary choice</legend>
    <label><input id="bin0" name="binary" value="0" type="radio" checked> 0</label>
    <input id="bin1" name="binary" value="1" type="radio"><label for="bin1">1</label>
  </fieldset>
  <button type="submit">Submit</button>
</form>