HTML Form Attributes
- HTML forms are used to collect user input and send it to a server for processing.
- The
<form>
element is used to create an HTML form, and it has several attributes that determine the form's behavior.
Form Attributes
Here are some of the most commonly used form attributes:
action
: Specifies the URL of the script that will process the form data when the form is submitted.method
: Specifies the HTTP method to be used when submitting the form, either GET or POST.target
: Specifies the target window or frame where the response to the form submission will be displayed.name
: Specifies a name for the form, which can be used to reference the form in JavaScript.autocomplete
: Specifies whether the browser should autocomplete the form input fields.enctype
: Specifies the encoding type used when submitting the form data, eitherapplication/x-www-form-urlencoded
,multipart/form-data
, ortext/plain
.
Input Attributes
HTML input elements are used to create form controls, such as text fields, checkboxes, radio buttons, and more. Input elements also have several attributes that can be used to customize their behavior and appearance. Here are some of the most commonly used input attributes:
type
: Specifies the type of input control, such as text, checkbox, radio, submit, and more.name
: Specifies a name for the input control, which can be used to reference the control in JavaScript.value
: Specifies the initial value for the input control.required
: Specifies whether the input control is required to be filled out before the form can be submitted.readonly
: Specifies whether the input control is read-only and cannot be edited by the user.disabled
: Specifies whether the input control is disabled and cannot be used by the user.