Web Development & Design Foundations with HTML5: Forms

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

flashcard set

Earn XP

Description and Tags

These flashcards cover vocabulary and key definitions related to the use of forms in web development and design, particularly with HTML5.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

Form

An HTML element that contains and organizes form controls such as text boxes, check boxes, and buttons that can accept information from website visitors.

2
New cards

Input Element

Configures a variety of form elements including text boxes, radio buttons, check boxes, and buttons; it is a stand-alone tag.

3
New cards

Textarea

Configures a scrolling text box that allows users to enter multiple lines of text.

4
New cards

Select Element

Configures a select box (drop-down list) that allows users to choose one or more items from a predetermined list.

5
New cards

Submit Button

An input element that submits the form information when clicked, triggering the action method on the form tag.

6
New cards

Reset Button

An input element that resets the form fields to their initial values.

7
New cards

Checkbox

Allows the user to select one or more of a group of predetermined items.

8
New cards

Radio Button

Allows the user to select exactly one option from a group of predetermined options.

9
New cards

Server-Side Processing

Works with form data to handle it, which can include sending emails, writing to a text file, updating a database, or performing other types of processing.

10
New cards

Accesskey Attribute

A keyboard shortcut that allows you to focus on a specific form component using a combination of keys.

11
New cards

Tabindex Attribute

Modifies the default tab order of form controls and anchor tags when navigating through elements using the keyboard.

12
New cards

Fieldset Element

A container tag used to group related elements within a form visually.

13
New cards

Legend Element

A container tag that creates a caption or label for a group of elements in a fieldset.

14
New cards

Email Input Type

An input type that accepts text information in the format of an email address.

15
New cards

File Upload Control

Configures the input to accept file uploads when the form is submitted, requiring method="post" and enctype="multipart/form-data".

16
New cards

Datalist Control

A control that provides an auto-complete feature for input fields, displaying a list of predefined options.

17
New cards

CSS Float

A CSS property used to style forms by allowing elements to be positioned next to each other.

18
New cards

CSS Grid Layout

A CSS technique used to style forms by defining rows and columns to control layout.