Give the first option
a value
of ""
, and the subsequent option
elements value
attributes from 1
to 4
What am I missing here? I’ve done what was asked, yet I keep getting an error that reads I need to add “” to the value of the first option. Thank you for any assistance.
</label>
<label>How did you hear about us?
<select>
<option>(select one) <value=""> </option>
<option>freeCodeCamp News <value="1"> </option>
<option>freeCodeCamp YouTube Channel <value="2"></option>
<option>freeCodeCamp Forum <value="3"></option>
<option>Other <value="4"></option>
</select>
</label>