To present the user with a set of mutually exclusive options, use (choose all that apply):
A. MENU B. SELECT C. radio buttons D. a choice set
Sure. SELECT
is a tag you can use to make a dropdown menu, or you can use radio buttons:
Forms are submitted with name/value pairs.
IDs uniquely identify elements.
In the example form above, name="os"
is not unique
As in the example above, it associates some text with a widget, like the radio buttons.
There is no type
for a label. The input
tag has a type
attribute.
The original was input
, but people wanted to turn
images and such into buttons so the button
tag was added.
Great!