Tell us what’s happening:
ive got 16 out of 17, it tells me that 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”.
as you can see down here on my code, i put all the corresponding labels, i cant find the mistake…
Your code so far
<form id="survey-form">
<div class="form-group">
<div class="name">
<label id="name-label" for="name-label">Name</label>
<input
type="name"
name="name"
id="name"
placeholder="Enter your name"
required/>
</div><br>
<div class="email">
<label id="email-label "for="email-label">Email</label>
<input
type="email"
name="email"
id="email"
placeholder="Enter your email address"
required/><br><br>
</div>
<div>
<label id="number-label" for="number">Age</label>
<input
type="number"
name="age"
min="15"
max="80"
id="number"
placeholder="Enter your age"
required/><br><br>
</div>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36
.
Challenge: Build a Survey Form
Link to the challenge: