Tell us what’s happening:
back again with anther mystery. i thought i did it correctly but its telling me " The first label
element should have a for
attribute with a value of profile-picture
."
i did this with and without the space and im still confuzzled
Your code so far
<fieldset>
<label for:'profile-picture' >Upload a profile picture: <input id='profile-picture' type="file" /></label>
<label for:'age'>Input your age (years): <input id='age' type="number" min="13" max="120" /></label>
<label for='referrer'>How did you hear about us?
<select id='referrer'>
<option value="">(select one)</option>
<option value="1">freeCodeCamp News</option>
<option value="2">freeCodeCamp YouTube Channel</option>
<option value="3">freeCodeCamp Forum</option>
<option value="4">Other</option>
</select>
</label>
<label for='bio'>Provide a bio:
<textarea id='bio'></textarea>
</label>
</fieldset>
Challenge: Learn HTML Forms by Building a Registration Form - Step 38