Survey form will not pass

Build a Survey Form will only score a 15/17 will not pass. I don’t know what I am missing.
thanks~

Please post your code. Preferably the link to a Codepen.


sorry

The failing tests have to do with the input with id=“number”.

  1. If I enter non-numbers in the number input, I will see an HTML5 validation error.

To do this you need to give that input a type attribute of “number”.

  1. If I enter numbers outside the range of the number input, I will see an HTML5 validation error.’

To do this, you need to give that input a min attribute equal to a number.

Right now you are using the <input id="number"> for a telephone number. It probably makes more sense for something like age or years of experience.