HTML Flashcards
Used to collect user input.
HTML Forms
The HTML _ element is used to create an HTML Form for user input.
<form>
</form>
The HTML element is the most used form element.
<input></input>
The element useful for screen readers.
<label></label>
Let user select one of a limited number of choices.
Radio Button
Let user select Zero or More options of a limited number of choices.
Checkboxes
This is a file on the sever with a script for processing input data.
Form-Handler
If the name attribute is _ , the value of the input field will not be sent at all.
Omitted
An attribute defines the action to be performed when the form is submitted.
Action
An Attribute specifies the HTTP method to be used when submitting the form data.
Method
Is good for non-secure data, useful wants to bookmark,limited length (2048), appends the form data to the URL.
GET
Appends the form data inside the body HTTP, no size limitations and good for secure data.
POST
An attribute specifies whether the form should have auto complete on or off.
Autocomplete
An attribute is a Boolean attribute.
Novalidate
An element defines multi-lines input field.
<textarea>
</textarea>