Hello everyone!
I hope you’re doing well.
I am on step 36 of building a Quiz and I think I followed the prompt to the word. I need your help to know what I am doing wrong.
The prompt :
(# Step 36
Within the first div.answer
element, nest one required select
element with three option
elements.
Give the first option
element a value
of ""
, and the text Select an option
. Give the second option
element a value
of yes
, and the text Yes
. Give the third option
element a value
of no
, and the text No
.)
The last hint given:
Hint
You should give the first option
element a text content of Select an option
.
The relevant part of the code:
<div class="answer">
<select>
<option value="">
Select an option
</option>
<option value="yes">
Yes
</option>
<option value="no">
No
</option>
</select>
</div>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.49
Challenge: Learn Accessibility by Building a Quiz - Step 36
Link to the challenge: