Looking for feedback on my Survey From

Any feedback is welcome! Thanks!

1 Like

Hey @MeganKnop!

Congrats on finishing your survey form. Just a couple of things.

I ran your code through the html analyzer and there were a few errors that need fixing.

Also it would be nice if the button had the cursor pointer property like this.

button {cursor:pointer;}

Hope that helps!

Happy coding!

1 Like

Hi @jwilkins.oboe. Thank you so much for your feedback!

I like it. Pls how did you get the form here? I’d like to do same

1 Like

Welcome to the forums @MeganKnop. Your page looks good. Some things to revisit;

  • 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.
  • Codepen provides validators for HTML, CSS and JS. Click on the down arrow in the upper right of each section and then click on the respective ‘Analyze’ link.
    • The one for CSS is good. Use it, there’s something to revisit.
      • You want to avoid having duplicate selectors
    • (The one for HTML misses things which is why I recommend W3C)
  • Do not use the <br> element to force line breaks or spacing. That’s what CSS is for.
  • Attaching a screenshot. On smaller screens text blends into the background. Maybe some opacity on your form would help.

1 Like

Thanks you so much @Roma ! I appreciate the pointers and am going to make those changes!