HTML - Checkboxes
simple checkboxes
Used when you want the user to select one or more options
<form> <input type="checkbox" name="cat" value="cat"/> I like cats <br/> <input type="checkbox" name="dogs" value="dogs"/> I like dogs </form> |
This is how it will appear in a browser |
View above example output in a new browser window |