Error on survey form (input box)

Here is my code of the input boxes for name, email and number. I cannot figure out why are these two tests marking an error.  

4. Inside the form element, I am required to enter my name in a field with id=“name”. If I do not enter a name I will see an HTML5 validation error.

5. Inside the form element, I am required to enter an email in a field with id=“email”. If I do not enter an email I will see an HTML5 validation error.

Name

<label id="email-label" for="email">email</label>
<input id="email" type="email" placeholder="enter your email"><br> 

<label id="number-label" for="number">Number</label>
<input id="number" type="number" placeholder="enter your number" min="1"            max="9999999"><br><br>

These are the email and number fields. Where is the name field?

1 Like

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