Forms
Take this course and learn about the inner workings of an HTML form! Learn how to create your own form and integrate HTML5 validations.
StartKey Concepts
Review core concepts you need to learn to master this subject
<input>
: Checkbox Type
<textarea>
Element
<form>
Element
<input>
: Number Type
<input>
Element
<input>
: Range Type
<select>
Element
Submitting a Form
<input>
: Checkbox Type
<input>
: Checkbox Type
<input type="checkbox" name="breakfast" value="bacon">Bacon 🥓<br>
<input type="checkbox" name="breakfast" value="eggs">Eggs 🍳<br>
<input type="checkbox" name="breakfast" value="pancakes">Pancakes 🥞<br>
When using an HTML input
element, the type="checkbox"
attribute will render a single checkbox item. To create a group of checkboxes related to the same topic, they should all use the same name
attribute. Since it’s a checkbox, multiple checkboxes can be selected for the same topic.
What you'll create
Portfolio projects that showcase your new skills
How you'll master it
Stress-test your knowledge with quizzes that help commit syntax to memory