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"
I don’t know what to do.
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"
I don’t know what to do.
Hi there, David2004.
There should be labels, which have the id you mention. Here is the link to get you started.
right, so the test says:
10. 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".
here is your code:
<form id="survey-form">
<input id="name" required placeholder="type name here"></label>
<input type="email" id="email"required placeholder="name@gmail.com"></label>
<input type="number" id="number" min="01" max="100" placeholder="type number here"></label>
you have closing label tags… but there arent any label tags to close?
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.