Tell us what’s happening:
I need to know how I can make my radio buttons select only one option and not both together. Honestly I have forgotten in the attribute according to the code.
STEP: If you click on the radio inputs, you might notice both inputs within the same true/false fieldset can be selected at the same time.
Group the relevant inputs together such that only one input from a pair can be selected at a time.
MY CODE EXAMPLE:
<ul class="answers-list">
<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>
</ul>
</fieldset>
</div>