HTML Checkboxes
Use of Checkbox In HTML
HTML offers us various input forms and Check boxes is one of them. They are simple ways to input data from site visitors. You can ask them to make a selection based on the check box options. Using check boxes helps you to quickly capture data from site visitors.Checkbox allow multiple
selections.
How To Create Checkbox In HTML
Here is how you specify the checkbox input in your HTML body’s form tag area:
<html> <input type="checkbox" name="designing" value="Logo Designing" />Soccer<br /> <input type="checkbox" name="designing" value="Brochure Designing" />Football<br /> <input type="checkbox" name="designing" value=" Web Designing" />Baseball<br /> <input type="checkbox" name=" designing" value=" Forms Designing" >Basketball </html>
Please select the design skills you require:
Soccer
Football
Baseball
Basketball