1 Minute HTML tutorial - checkboxes and radio buttons

Preview:

Citation preview

1 Minute HTML

Checkbox and Radio Button

Check Boxes allow

multiple selections

You can select multiple boxes

Radio Buttons allow

only a single selection

You can check only one button

<input> tag can create

Check Boxes

<input> with type=“checkbox”

- > checkbox

“name” appears in query string

You can select

multiple checkboxes

Pressing the submit button …

you jumped to action.html

Your selections in query string

Your selections in query string

<input> tag can also

create Radio Buttons

<input> tag with type=“radio”

create radio buttons

“name” as parameter names

in query string

“value” as parameter values

in query string

You can select only one

radio button

Pressing the submit button …

you jumped to action.html

Your selection in query string

Your selections in query string

Recommended