* fix: restructure certifications guide articles * fix: added 3 dashes line before prob expl * fix: added 3 dashes line before hints * fix: added 3 dashes line before solutions
16 lines
737 B
Markdown
16 lines
737 B
Markdown
---
|
|
title: Create a Set of Checkboxes
|
|
---
|
|
# Create a Set of Checkboxes
|
|
|
|
---
|
|
## Problem Explanation
|
|
The `type="checkbox"`attribute works basically as the `type="radio"` attribute does: the main difference is that checkboxes are used to collect one OR MORE choices, radio-buttons are used when you want exclusive choices ( one OR another ).
|
|
|
|
The `name` attribute indicates the group the checkbox belongs to, and to be part of a group will make easier to manage the data on the server-side.
|
|
|
|
To solve this challenge you need to create three `input` HTML elements with the attribute `type="checkbox"` and with the `name` attribute set to `"personality"` ( capitalization matters); the text content of the label it's up to you.
|
|
|
|
|
|
Good luck!
|