Details

Title: Chapter 14

Description: Bullet Points

Total Flash Cards: 11

Created: 02/05/2009 06:38:54

New Users: To study from this flashcard set, or to create your own your own study flash cards, REGISTER HERE.

Existing Users: CLICK HERE.

Additional Computer Science Flashcards

Cards in this set:

Term
What does the form element do?
Definition
It defines the form and all input elements nested insife of it.
Term
What is the action attriubute for then?
Definition
It contains the URL of the web appliction
Term
And the method attribute, what does it do?
Definition
It contains the method of sending form data: either POST or GET.
Term
What do post and get do?
Definition
Post pakages form data and sends it as part of a request; get packages form data and appends it to the data.
Term
When would I use those?
Definition
Post would be used when form dat should be private, or when it is large, such as when a text are or file input element is used. Get should be used when requests might be bookmarked
Term
What does input do?
Definition
It acts as many different controls on a web page, depending on the attribute used.
Term
What can do with "Text and Submit"?
Definition
text can make single lines of text and submit can make submit buttons
Term
What does "Radio" and "Checkbox" do?
Definition
Radio makes radio buttons which are buttons the can only have one selected choice, and Checkbox is the opposite; it can have multiple choices.
Term
What do "textarea" and "select" do?
Definition
Textarea is just like text except it make multiple lines of text; And select lets you select options to define items on your web page.
Term
How do I change the text on a submit button?
Definition
Just set a value to it.
Term
how can I freely arrange my elements and lable them?
Definition
For arrangement you can use the fieldset element amd to lable them use the lable element.