I’m on step 30 of “Learn HTML Forms by Building a Registration Form”. Not sure what I’m doing wrong since the text is before the select element nested inside the label element. Any help would be appreciated. Thanks in advance!
<fieldset>
<label>Upload a profile picture: <input type="file" /></label>
<label>Input your age (years): <input type="number" min="13" max="120" />
</label>
<label>
How did you hear about us?
<select>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
</select>
</label>
</fieldset>