Freecodecamp Survey form -nb

This is my second project.

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

  • Codepen provides the boilerplate for you. It only expects the code you’d put within the body element in HTML. (No need to include the body tags). For anything you want to add to the <head> element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
    • The link to the font goes in the box labeled ‘Stuff for <head>’
  • Run your HTML code through the W3C validator.
    • There are HTML coding errors you should be aware of and address.
    • Since copy/paste from codepen you can ignore the first warning and first two errors.
  • User’s should be able to click on the label to toggle a selection, not just the radio button / checkbox.
  • Don’t use the <br> element to force line breaks or spacing. That’s what CSS is for.
  • Change the cursor to a pointer when hovering over the submit button.
  • The page needs to be responsive. Remember, the R in RWD stands for Responsive.
    • Nothing scales on smaller screens. Resize your browser to see what I mean.
    • Rather than hardcoding width’s with pixel values it would be more responsive if you used percentages