Responsive Survey Form project design

https://codepen.io/Adnan_webdev/pen/zYKNyLO

1 Like

Hello @beatthebrain2019. Welcome to FCC forum. You have an interesting Survey Form Topic. Your project doesn’t have the test suite included. Are you seeking for feedback or have a question about the project?

:laughing: :laughing: :laughing: interesting

@beatthebrain2019, your survey form looks good. Some things to revisit;

  • Keep the test script when forking the pen (<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>)
    • The test script should be included, with all tests passing, when you submit your projects.
    • Your page passes 11/17 user stories. Click the red button to see which test(s) are failing and text to help you correct the issue.
  • 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.
    • Mentioning because you have elements out of order. Everything the browser displays belongs in the body element. It would never be in the head element. You can review this for an understanding of the HTML boilerplate tags.
  • 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
    • Revisit the lessons on creating radio buttons and checkboxes.
  • 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.

On a side note, next time for more eyes on a better forum for project reviews is the Project Feedback forum

1 Like