---
-### Text Inputs
+#### Text Inputs
These input types create a text field: `text`, `date`, `datetime`, `datetime-local`, `email`, `month`, `number`, `password`, `search`, `tel`, `time`, `url`, and `week`.
---
-### Select Menus
+#### Select Menus
Use select menus to combine many choices into one menu.
</label>
```
+Add the `multiple` attribute to allow more than one option to be selected.
+
+```html_example
+<label>Multiple Select Menu
+ <select multiple>
+ <option value="showboat">Showboat</option>
+ <option value="redwing">Redwing</option>
+ <option value="narcho">Narcho</option>
+ <option value="hardball">Hardball</option>
+ </select>
+</label>
+```
+
---
-### Checkboxes and Radio Buttons
+#### Checkboxes and Radio Buttons
Use groups of checkboxes when the user may select multiple choices from a list, and use radio buttons when the user must select just one choice.
---
-### Fieldset Styles
+#### Fieldset Styles
To encourage their use as an accessibility tool, the `<fieldset>` element is no longer styled by default. Those styles are now contained in the `.fieldset` class.