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
|
Definition
Post pakages form data and sends it as part of a request; get packages form data and appends it to the data. |
|
|
Term
|
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
|
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
|
|
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. |
|
|