Build a Survey Form - Project

Hello!
Hope everyone is having a wonderful week. I finished the projects for Responsive Web Design course. And would appreciate your honest feedback on project #2-

Thank you so much for your time! :slight_smile:

Your form looks good @nazra08. Some things to 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>’
    • You have elements out of order. Review this for an understanding of the HTML boilerplate tags.
  • Codepen provides validators for HTML, CSS and JS. Click on the chevron in the upper right of each section and then click on the respective ‘Analyze’ link.
    • The one for CSS is good. Use it and address the issue(s).
    • (The one for HTML misses things which is why I recommend W3C)
  • Do not use style tags in the CSS editor. It will cause problems. These tags are meant to be used in the head element of HTML when doing internal styling. All your styling should be external.
  • Do not use the <br> element to force line breaks or spacing. That’s what CSS is for.

On a side note, placeholder text should show the user the format that is expected in the input area. It should not mirror the label.

1 Like

Thank you for the great suggestions. I will make modifications also keep an eye out for these in my next projects.

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