Topic: Learning HTML form by building Registration form
Hello Coders,
I am currently stuck on this step and don’t understand what I’m doing wrong.
The error it’s giving me is “You should give the first option
element the text (select one)
.”
Please give me some insight on what I can do pass this step. I listed my current codes below.
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>(select one)
</option>
<option>freeCodeCamp News
</option>
<option>freeCodeCamp YouTube Channel
</option>
<option>freeCodeCamp Forum
</option>
<option>Other
</option>
</select>
</label>
</fieldset>