Survey Form Feedback. What do you guys think?

what do you guys think about my 2nd project? and also a little help lining up my checkboxes please.
https://codepen.io/BearMechanic/pen/abBPXRb

text align: center; is on the body so everything is centered. The number of characters on a line will throw off any vertical alignment of checkboxes. Centering text can give you a nice shape like that pyramid look of the top section, but the text content has to support that look. Notice the radio buttons are one character out of alignment. Put everything in the checkbox section in a block element with the text left-aligned then align the block horizontally so that the checkboxes are centered.

Done! thank you. all submitted.

Your form looks good @BearMechanic. 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.
  • Make your page responsive. Remember, the R in RWD stands for Responsive
    • There’s a horizontal scrollbar on smaller screens

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