Build Survey Form

** ** i have to solve this challenge and i think i wrote the code write but i can’t pass the challenge idk why**

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" .

**





<legend>Email</legend>
<br>
<label id="email-label">
<input id="email" type="email" name="youremail" placeholder="Enter your Email" required />
</label>
<br>
 <br>

<legend>Age <small>(optional)</small></legend>
<br>
<label id="number-label">
<input id="number" type="number" name="Age" placeholder="Age" min="1" max="100"; />
</label>
<br>
**

Your browser information:

Challenge: Build a Survey Form

Link to the challenge:

in your code snippet i don’t see an element with id = "name-label". But it would be easier with a link to your codepen.

EDIT: you also seem to have left in a ; in your number <input>

Can you post your link to the Codepen?

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