# HTML Radio Input
The <input type="radio">
defines a radio button.
# Handling Radio Buttons using Getform
In HTML, a radio button is used to select one of many given choices. Radio buttons with the same name property are grouped, forming a radio group.
You can simply submit radio input values using Getform.
The sample form should look like this:
<form action="https://getform.io/f/{your-form-endpoint}" method="POST">
<input type="radio" name="gender" value="male" checked />
<input type="radio" name="gender" value="female" />
<input type="radio" name="gender" value="other" />
<button type="submit">Submit</button>
</form>
TIP
You should use the same name
attribute for all the choices you are adding. Otherwise, your radio input selection won't be submitted correctly.