# Radio [component-header:sl-radio] Radios allow the user to select one option from a group of many. ```html preview Radio ``` ?> This component doesn't work with standard forms. Use [``](/components/form.md) instead. ## Examples ### Checked Use the `checked` attribute to activate the radio. ```html preview Checked ``` ### Disabled Use the `disabled` attribute to disable the radio. ```html preview Disabled ``` ### Grouping Radios Radios are grouped based on their `name` attribute and scoped to the nearest form. ```html preview Option 1
Option 2
Option 3
Option 4 ``` [component-metadata:sl-radio]