Tribute page and survey page feeback

I have completed the first two of the projects and am looking for feeback. While they are usable and pass all the tests they just don’t appear visually attractive or appealing to me however I am not sure how to improve on this. Any feedback would be welcomed;

Tribute page
Survey page

Welcome to the forums @alex.burnett02. Your pages look good. Some things to revisit;

tribute

  • Keep the test script when forking the pen (<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>).
    • The test script should be included, with all tests passing, when you submit your projects.
  • 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.
  • Accessibility is about being accessible to all users. Review the lesson about giving meaningful text to links.
  • Do not use the <br> element to force line breaks or spacing. That’s what CSS is for.
  • Make your page responsive. Remember, the R in RWD stands for Responsive
    • There’s a horizontal scrollbar on smaller screens

survey

  • Codepen provides the boilerplate for you. It only expects the code you’d put within the body element in HTML. (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.
    • The link to the font goes in the box labeled ‘Stuff for <head>’
    • (these apply to your tribute page too)
  • 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.
  • User’s should be able to click on the label to toggle a selection, not just the radio button / checkbox
    • for your checkboxes, only one works
  • Change the cursor to a pointer when hovering over the submit button
  • Again, do not use the <br> element to force line breaks or spacing. That’s what CSS is for.

Thank you very much for your feedback, i will fix these errors.