Learn Accessibility by Building a Quiz - Step 36

Tell us what’s happening:

Not sure what I am missing. I think I am in the first div.question-block.

Your code so far

<!-- file: index.html -->
<!-- User Editable Region -->

        <section role="region" aria-labelledby="css-questions">
          <h2 id="css-questions">CSS</h2>
          <div class="formrow">
            <div class="question-block"><lable>Are CSS styles fun?</label>
            </div>
            <div class="answer">
            </div>
            <div class="question-block">
            </div>
            <div class="answer">
            </div>
          </div>
        </section>

<!-- User Editable Region -->
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0

Challenge Information:

Learn Accessibility by Building a Quiz - Step 36

Within the div.question-block elements,

elements, there are 2 of them, you need to do this for both.

Also, you spelled label wrong

2 Likes