So I typed up everything exactly the way it says in the instructions, but still doesn’t pass and says " The first input
element should have an id
of profile-picture
." So what exactly am I doing wrong?
<fieldset>
<label id="profile-picture">Upload a profile picture: <input type="file" /></label>
<label id="age">Input your age (years): <input type="number" min="13" max="120" /></label>
<label id="referrer">How did you hear about us?
<select>
<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 id="bio">Provide a bio:
<textarea></textarea>
</label>
</fieldset>