I’m not sure what is wrong.
Start by adding a select
element below the two label
elements. Then nest 5 option
elements within the select
element.
<fieldset>
<label>Upload a profile picture: <input type="file" /></label>
<select>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
</select>
<label>Input your age (years): <input type="number" min="13" max="120" /></label>
<select>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
</select>
</fieldset>
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14816.131.5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36
Challenge: Learn HTML Forms by Building a Registration Form - Step 33
Link to the challenge: