Web Dev: Lesson 6 - Web Forms

Web Dev: Lesson 6 - Web Forms

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

<textarea> element key attributes - rows

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

6 years ago

Date created

Mar 1, 2020

Cards (25)

Section 1

(25 cards)

<textarea> element key attributes - rows

Front

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

Back

Check box

Front

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

Back

File upload

Front

A button and field that allow users to navigate to and select a local file for uploading or other purposes (for example, to validate HTML files).

Back

input

Front

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

Back

name

Front

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

Back

Password field

Front

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

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. Common clientside scripting languages include JavaScript and VBScript.

Back

Text box

Front

A text field into which a user can enter characters.

Back

textarea

Front

Element used to create scrolling box into which text can be entered

Back

Text area

Front

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

Back

select

Front

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

Back

server-side script

Front

Code that resides on a server to help process Web form input. Server-side CGI scripts are commonly written in Perl.

Back

method

Front

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

Back

Submit button

Front

A button that, when clicked, causes the form's action statement to process. Labeled "Submit" or "Submit Query" by default, but can display any label.

Back

action

Front

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

Back

<textarea> element key attributes - wrap

Front

Specifies whether user-entered text can wrap to new lines when submitted. If "soft" is specified, text in the textarea is not wrapped when submitted. This setting is the default. If "hard" is specified, text in the textarea will wrap (adding newline characters) when submitted.

Back

Radio button

Front

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

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. Labeled "Reset" by default, but can display any label.

Back

<textarea> element key attributes - cols

Front

Specifies the width in characters of the scrolling text box.

Back

Common Gateway Interface (CGI)

Front

A program that processes data submitted by the user. Allows a Web server to pass control to a software application, based on user request. The application receives and organizes data, then returns it in a consistent format.

Back

Single-option select list

Front

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

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

value

Front

Attribute that allows default text to appear inside a text box

Back

form

Front

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

Back

cols

Front

Attribute that specifies the width of a scrolling text box

Back