# Radiobuttons

```html
@example
<div class="form-group">
    <div class="radio">
        <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
        <label for="optionsRadios1">Option one is this and that&mdash;be sure to include why it's great</label>
    </div>
    <div class="radio">
        <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
        <label for="optionsRadios2">Option two can be something else and selecting it will deselect option one</label>
    </div>
</div>
```
