Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CharlesAMoss/7c75ec034215a6692f8074d858ef92c3 to your computer and use it in GitHub Desktop.
Save CharlesAMoss/7c75ec034215a6692f8074d858ef92c3 to your computer and use it in GitHub Desktop.
just a checkbox form
<form>
<div>
<input type="checkbox" value="this one">
<label for="this one">This</label>
</div>
<div>
<input type="checkbox" value="that one">
<label for="that one">That</label>
</div>
<div>
<input type="checkbox" value="other one">
<label for="other one">Other</label>
</div>
<button type="submit">Submit</button>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment