Learn Accessibility by Building a Quiz - Step 29

Tell us what’s happening:

Can anybody help me tell what’s going wrong here, please.

You should nest one label element within the third li element.

Your code so far

          <ul class="answers-list">
            <li>
              <label>
                <input type="radio"/>
              </label>
            </li>
            <li>
              <label>
                <input type="radio"/>
              </label>
            </li>
          </ul>
        </fieldset>
      </div>
      <div class="question-block">
        <p>2</p>
        <fieldset class="question" name="html-question-two">
          <legend>
            A label element nesting an input element is required to have a
            for attribute with the same value as the input's id
          </legend>
          <ul class="answer-list">
            <li>
              <label>
                <input type="radio"/>
              </label>
            </li>
            <li>
              <label>
                <input type="radio"/>
              </label>
            </li>
          </ul>

Your browser information:

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

Challenge Information:

Learn Accessibility by Building a Quiz - Step 29

Within each list element, nest one label element, and within each label element, nest one input element with the appropriate type.

Thanks for your reply. But as far as I have seen I have done as you have said, and it gives me the same error.

Sometimes there’s browser issue, change your browser and try again.
@AllakeNaveen

It was a typo error. I just fixed it. Thanks for your reply too.

2 Likes

Good :+1: your welcome :hugs: Happy Coding :grinning:

1 Like

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