Radio

Did you want to listen to AM or FM?
Fieldset with multiple radio options
Copied!
Radio Inputs Are:
<fieldset>
<legend>Radio Inputs Are:</legend>
<label for="radio1">
<input type="radio" id="radio1" name="radio" checked="checked" value="single">
A Single Choice Per Set
</label>
<label for="radio2">
<input type="radio" id="radio2" name="radio" value="circle">
Circular Shapes
</label>
<label for="radio3">
<input type="radio" id="radio3" name="radio" value="useful">
Useful
</label>
<label for="radio4">
<input type="radio" id="radio4" name="radio" value="impossible">
Impossible to Unselect
</label>
<label for="radio5">
<input type="radio" id="radio5" name="radio" value="not-check">
Not Checkboxes
</label>
</fieldset>
Page updated on Sep 17, 2026