Feedback Requested on First Draft of Survey Form

Hi there,

I have completed the first draft of my survey form and would appreciate any feedback. Ideally: 1. What can I do to align with best practice more effectively, any recommendations regarding designs, resources I should review?

Thanks!
Daniel

Your form looks good @danieljohnsonxyz.
When asking for feedback you should post in the #project-feedback subform. I’ll move if for you this time.

Some things you should revisit;

  • Codepen provides the boilerplate for you. It only expects the code you’d put within the body element in the HTML editor. (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.
    • For instance, links to fonts go in the box labeled ‘Stuff for <head>’
  • Run your HTML code through the W3C validator.
    • There is an HTML syntax/coding error you should be aware of and address. (Nothing major but you should be aware of it)
  • User’s should be able to click on the label to toggle a selection, not just the radio button / checkbox
    • there is an attribute missing for one of your 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.
  • Make your form responsive. Remember, the R in RWD stands for Responsive
    • There’s a horizontal scrollbar on smaller screens (textarea and button do not resize)
1 Like

I forgot to say thanks, but, thanks!

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.