Section 1

Preview this deck

name

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

4 years ago

Date created

Mar 1, 2020

Cards (25)

Section 1

(25 cards)

name

Front

Attribute that identifies user input and associates it with a value to help organize user-submitted data.

Back

file upload

Front

A button and field that allow users to navigate to and select a local file for uploading or other purposes.

Back

reset button

Front

A button that, when clicked, clears all form data and sets all form fields back to the default values for those fields.

Back

select

Front

Element used to create drop-down option lists from which the user can choose single or multiple options.

Back

radio button

Front

Round option buttons in a group of two or more mutually exclusive options.

Back

multiple-option select list

Front

An exposed list of two or more options, optionally scrollable, from which the user can make multiple selections.

Back

action

Front

Attribute that specifies the name and location of the script used to process the form.

Back

rows

Front

Specifies the number of rows of text to display in the box.

Back

text box

Front

A text field into which a user can enter characters.

Back

server-side script

Front

Code that resides on a server to help process Web form input.

Back

post

Front

Form data is posted to the URL specified by the action attribute.

Back

input

Front

Element used to create text boxes, check boxes, radio buttons, and the Submit and Reset buttons.

Back

text area

Front

A scrolling text field into which the user can enter multiple lines of text.

Back

check box

Front

Square boxes in a group of two or more non-exclusive options.

Back

wrap

Front

Specifies whether user-entered text can wrap to new lines in the text box.

Back

submit button

Front

A button that, when clicked, causes the form's action statement to process.

Back

Common Gateway Interface (CGI)

Front

A program that processes data submitted by the user.

Back

password field

Front

A text box that visually masks the entered characters as asterisks.

Back

single-option select list

Front

A drop-down list of two or more options from which a single selection can be made.

Back

method

Front

Attribute that specifies how a browser will send form data to a Web server.

Back

cols

Front

Attribute that specifies the width of a scrolling text box.

Back

value

Front

Attribute that allows default text to appear inside a text box.

Back

client-side script

Front

Code embedded into an HTML page and downloaded by a user; resides on the client and helps process Web form input.

Back

get

Front

Form data is appended to the URL of the Web page for use in a query string. This method sends information in cleartext and is thus less secure.

Back

form

Front

Required element to create a Web form, and contains all other form elements.

Back