Quiz
-
can you explain this quiz question:
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: - What is the difference between a name and an ID?
Forms are submitted with name/value pairs.
IDs uniquely identify elements.
In the example form above,
name="os"
is not unique - Can you go over the function of the label? Thank you!
As in the example above, it associates some text with a widget, like the radio buttons.
- When using the label tags , what exactly does the 'type' do?
There is no
type
for a label. Theinput
tag has atype
attribute. - What is the purpose of the <button> tag, and how does it differ from the <input> tag for buttons?
The original was
input
, but people wanted to turn images and such into buttons so thebutton
tag was added. - There is nothing else I would like to talk about. / Nothing, it was pretty clear! / the readings made sense
Great!