Survey Page on Music

Hi! Friends…please help me to check out on this page…if any suggestions to better improve this especially visual designs…colors

Thanks.

Hi, Great effort on the project! in my opinion I’d suggest you use a more subtle image background or simply apply opacity using CSS, secondly your choice of text colors was a bit distracting perhaps try using colors that are either neutral or that compliment each other well. Do play around with your CSS and get familiar with flex-box, creating containers, applying shadows etc, lastly you have to many submit buttons i believe you only need the one at the end of your form and you need to indicate when fields are required with the (*).

1 Like

Your page looks good @Clement-Othniel. Some things to revisit;

  • Keep the test script when forking the pen (<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>)
    The test script, with all tests passing, should be included when you submit your projects.
    Your page passes 14/17 user stories. Click the red button to see which test(s) are failing and text to help you correct the issue.
    Be sure and read more than just the first line of the failing message. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.
  • 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.
  • Run your HTML code through the W3C validator.
    There are HTML syntax/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 chevron in the upxper 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)
  • User’s should be able to click on the label to toggle a selection, not just the radio button / checkbox
    You have typo’s on some that prevent this from working correctly
  • Change the cursor to a pointer when hovering over the submit button
    Is there a reason for having multiple submit buttons?
  • Make your page responsive. Remember, the R in RWD stands for Responsive
    There’s a horizontal scrollbar on smaller screens
  • On smaller screens the text blends with the background making it hard to read.
    Use a contrast checker
1 Like

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