With Multiple Checkbox
How to integrate Checkbox with Web3Forms Properly
<input type="checkbox" name="check"><input type="checkbox" name="check" value="checked">Multiple Checkboxes
<label>Interests</label>
<input type="checkbox" id="coding" name="interest" value="coding" />
<input type="checkbox" id="music" name="interest" value="music" />
Interests
coding,musicMultiple Checkbox with Javascript
Live Demo
Last updated