A Survey Form for the Camera-mad! Feedback would be much appreciated

Link: https://codepen.io/bdurrant91/pen/QWjoPVK

Content is just a bit of fun, but would love feedback on the code - found the CSS particularly tricky for this one.

Cheers,
Ben

Have completely overhauled the responsive nature of this page, and would appreciate some feedback. Had particular trouble getting the radio and checkboxes to behave - they’re still not quite there when the viewport shrinks…!

https://codepen.io/bdurrant91/pen/QWjoPVK

Form looks good @bdurrant91. Some things to revisit;

  • For your radio buttons section, you didn’t close the div with class="form-group"
  • 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 <head> click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
    • Mainly mention because the test script would/should go right before the closing body tag since it’s JS. If you placed it in the head element it would never run.
  • Change the cursor to a pointer when hovering over the submit button
1 Like

Thank you! Will look over and adjust these points.