Survey Feedback and question why the label id keeps failing?

Hi I would love some feedback and also if anyone knows why I can’t seem to pass the survey test, it fails on label test. error message below.

  1. For the name, email, and number input fields inside the form I can see corresponding labels that describe the purpose of each field with the following ids: id=“name-label”, id=“email-label”, and id=“number-label”. #email-label is not defined : expected null to not equal null

You have typos.

<label for="email" id"email-label"> Email:</label>

Notice there should be equal sign between id and email-label.

1 Like

Haha, thank you. This is why 4 eyes are better then two. thank you!