Feedback on my Survey Form

Hiiiiii This is my survey: https://codepen.io/bookworm0618/pen/Owywbo
Any feedback, especially on my CSS and positioning would be appreciated. :grinning:

Thanks!

Good job! I like its simplicity and clean design.

You can add a mousehover effect on submit button so that the button changes its color and cursor when mouse hovers on them.

I would also increase padding or margin at the bottom of the page so it has still some turquoise background in the end.

1 Like

nice page but it was designed for desktops not also for mobiles. Just ask yourself how would a

#survey-form {
  max-width: 900px;
  min-width: 600px;
  width: 75%;
} 

would look like on a mobile.
I would just use some media query to change that values.

1 Like