Final Project #2 for Responsive web design certification

I am on the second project, and as hard as I try I can’t seem to find out why my project isn’t passing all the tests. I have linked the requirements and my project below. Any help would be much appreciated, thanks and have a great day! Also, sorry for the lack of formatting and CSS, I like to get all of the HTML figured out before I move on to CSS stuff.

Requirements: https://www.freecodecamp.org/learn/responsive-web-design/responsive-web-design-projects/build-a-survey-form

Link to my project: https://codepen.io/starry_17/pen/qBrwyZM?editors=1100

@Aurora17, when a test fails 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.

For instance, the first failing message says

I can see a short explanation with id="description" in P sized text.
#description should be in P sized text : expected 'DIV' to equal 'P'
AssertionError: #description should be in P sized text : expected 'DIV' to equal 'P'

Do you understand what the test is looking for?

The second failing message says

Inside the form, I can enter a number in a field with id="number".
There should be an input text field with id="number" : expected null to not equal null
AssertionError: There should be an input text field with id="number" : expected null to not equal null

Again, do you understand what the test is looking for?

Continue with the rest of the error messages the same way. Reading them thoroughly.

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