Input Type Radio

<form>
  <input type="radio" name="gender" value="male" checked> Male<br>
  <input type="radio" name="gender" value="female"> Female<br>
  <input type="radio" name="gender" value="other"> Other
</form>

Defines a radio button.

Radio buttons let a user select ONLY ONE of a limited number of choices.

Input Type Radio — Structure map

Clickable & Draggable!

Input Type Radio — Related pages: