FORM TAG
INPUT TYPES
BUTTONS
FORM ELEMENTS
CHALLENGE
100

This tag creates a form.

<FORM>

100

Used for single-line text entry.

type="text"

100

Sends form data.

submit

100

Used for multi-line text.

<TEXTAREA>

100

Which method shows data in the URL?

GET

200

This attribute specifies where form data is sent.

action

200

Hides typed characters.

type="password"

200

Clears all form fields.

reset

200

Creates a dropdown list.

<SELECT>

200

Which method hides data from the URL?

POST

300

This attribute determines how data is sent.

method

300

Allows only one choice in a group.

type="radio"

300

Generic clickable button.

button

300

Represents an item inside a dropdown.

<OPTION>

300

Which input type is best for a login password?

password

400

This attribute identifies a form.

name

400

Allows multiple selections.

type="checkbox"

400

Button that uses a picture.

image

400

Attribute that sets the default dropdown choice.

selected

400

Why must radio buttons share the same name?

To belong to the same group.

500

Why can't forms be nested inside another form?

Because HTML does not allow one form to be placed inside another form.

500

Used to upload files from a computer.

type="file"

500

Explain the difference between Submit and Reset.

Submit sends data; Reset clears data.

500

Name two attributes used in TEXTAREA.

rows and cols

500

What is the main purpose of HTML forms?

To collect user information.

M
e
n
u