Checkbox Input

PHOTO EMBED

Tue Aug 30 2022 03:44:52 GMT+0000 (Coordinated Universal Time)

Saved by @cruz #javascript

<div>Activities</div>
<label>cooking<input type="checkbox" name="cooking"/></label>
<label>running<input type="checkbox" name="running"/></label>
<label>movies<input type="checkbox" name="movies"/></label>

//Multiple checkbox inputs with the SAME name attribute.

<div>Ingredients</div>
<label>Onion<input type="checkbox" name="ingredient" value="onion"/></label>
<label>Butter<input type="checkbox" name="ingredient" value="butter"/></label>
<label>Rice<input type="checkbox" name="ingredient" value="rice"/></label>
content_copyCOPY

https://education.launchcode.org/intro-to-professional-web-dev/chapters/forms/checkbox-input.html