Learn Accessibility by Building a Quiz - Step 37

I believe I have done this correctly, but it will not allow me to continue. I’d appreciate any guidance.

Step 37: 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 .

My code:

            <div class="answer">
              <select></select>
                <option value="">Select an option</option>
                <option value="yes">Yes</option>
                <option value="no">No</option>
            <div class="question-block">

please give a link to the step

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.