Radio buttons are buttons that only allowed one button to be selected at any given time.
Radio buttons are a type of input.
Each of your radio buttons can be nested within its own label element. By wrapping an input element inside of a label element it will automatically associate the radio button input with the label element surrounding it.
All related radio buttons should have the same name attribute to create a radio button group.
Should include a for attribute on the label element with a value that matches the value of the id attribute of the input element.