Created
January 13, 2014 23:52
-
-
Save DeanPoulin/8410324 to your computer and use it in GitHub Desktop.
checkboxes & radio buttons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="checkbox"> | |
| <label> | |
| <input type="checkbox" value=""> | |
| Option one is this and that—be sure to include why it's great | |
| </label> | |
| </div> | |
| <div class="radio"> | |
| <label> | |
| <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked> | |
| Option one is this and that—be sure to include why it's great | |
| </label> | |
| </div> | |
| <div class="radio"> | |
| <label> | |
| <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2"> | |
| Option two can be something else and selecting it will deselect option one | |
| </label> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment