Survey Form: Project Feedback

Hi there, I completed the survey form project and was wondering if anyone could give me some feedback? It’s been a while since I’ve done any work with HTML and CSS. I spent a lot of time googling. My goal for the project was to replicate the sample project without looking at the code.

Here’s a link to my project:

Really nice work I liked it.
Here a smiley from my side :slightly_smiling_face:

1 Like

Welcome to the forums @Boredest. Your form looks good. 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.
  • User’s should be able to click on the label to toggle a selection, not just the radio button / checkbox.
  • Change the cursor to a pointer when hovering over the submit button
  • Do not use the <br> element to force line breaks or spacing. That’s what CSS is for.

Thanks so much for all the feedback. I’ll get to changing this stuff asap!