My Survey Form Project!

Let me know if you have any feedback! :slight_smile:

1 Like

A lot of your <label>s aren’t working correctly. Remember, the for attribute on the <label> points to the id attribute on the <input>, not the value attribute.

Thanks so much for the feedback!

Your form looks okay @jordanbussiere. Some things to revisit;

  • Run your HTML code through the W3C validator.
    • Since copy/paste from codepen you can ignore the first warning and first two errors.
    • There are HTML coding errors you should address.
  • Don’t use <br> to force line breaks or spacing. That’s what CSS is for.
  • User’s should be able to click on the labels to select, not just the radio buttons / checkboxes.
  • Change the cursor to a pointer when hovering over the submit button.

Thanks so much, those resources are really helpful!