IT403 HTML forms quiz #6

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

forms

-basis of interactive web
-allows users to provide input to programs (that run either locally or on server)

2
New cards

form controls

-treated like large characters of text
-structured using HTML elements

3
New cards

text input

4
New cards

submit button

5
New cards

radio buttons

c

6
New cards

checkboxes

7
New cards

menus

8
New cards

text areas

9
New cards

form processors

programs that run (often on server) to process submitted form

10
New cards

form data set

set of name-value pairs compiled by browser and sent to form processor
-names come from attributes in html code
-values are typically provided by user filling in the form
-includes only successful controls, which are controls that have both name and value at submission
-form submissions are easily observable in transit
-

11
New cards

form element

represents form as a whole

12
New cards

method attribute

tells browser how to submit form data set, get or post

13
New cards

get

when you want form submission to be bookmarkable ex. search engine

14
New cards

post

when you want form submission to be hidden or large ex. logins

15
New cards

action attribute

tells browser where to send form data set. URL of form processor

16
New cards

label element

used to label form controls

17
New cards

for attribute

value matches id attribute of associated control

18
New cards

programs

require programming