Answers for "yes no radio button html"

3

radio buttons

<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>
Posted by: Guest on September-21-2020
2

radio input value

<input type="radio" name="test" id="test" value="this is the value">
Posted by: Guest on October-30-2020

Browse Popular Code Answers by Language