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