Checkbox
Can’t make a to-do list without these!
Fieldset with multiple checkboxes
Copied!
<fieldset>
<legend>Checkbox Documentation Process</legend>
<label for="check1">
<input type="checkbox" id="check1" name="check" checked="checked" value="build">
Build the stub page for checkboxes
</label>
<label for="check2">
<input type="checkbox" id="check2" name="check" value="create">
Create sample checkboxes
</label>
<label for="check3">
<input type="checkbox" id="check3" name="check" value="design">
Design the checkbox component
</label>
<label for="check4">
<input type="checkbox" id="check4" name="check" value="explore">
Explore container components for checkboxes
</label>
<label for="check5">
<input type="checkbox" id="check5" name="check" value="document">
Document the checkbox component
</label>
</fieldset>