I’m stuck here, not sure what I’m missing, sure it’s misunderstanding the instructions, any help would be helpful. Thank you in advanced.
<li>
<label for="q1-a1"> True?
<input type="radio" id="q1-a1" value="True" /> Are you over 21
</label>
</li>
<li>
<label for="q1-a2"> False
<input type="radio" id="q1-a2" value="False"/> Under 21
</label>
</li>
</ul>
</fieldset>
hbar1st
December 12, 2022, 12:46am
2
pls post a link to the challenge…
hbar1st
December 12, 2022, 12:57am
4
the text should be True in one radio button and False in the other one.
(Not “Are you over 21” etc)
the text should be after the input, not before it
Josy20
January 14, 2023, 2:59pm
5
Kindly assist to fix this code is not still passing,
response hint: Hint
You should give the first input
a value
matching the label
text content.
```
<li>
<label for="q1-a1">
<input type="radio" id="q1-a1" value=" True"/>
True
</label>
</li>
<li>
<label for="q1-a2">
<input type="radio" id="q1-a2" value=" False"/>
False
</label>
</li>
```
please open your own topic. You do that by clicking on the question mark button and typing a question into the template form that will be shown to you.
(we don’t want to use someone else’s thread to discuss your code)