If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".
Choose your favorite Web language:
If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".
When submitting this form, the result will be opened in a new browser tab:
This form will be submitted using the GET method:
After you submit, notice that the form values is visible in the address bar of the new browser tab.
This form will be submitted using the POST method:
After you submit, notice that, unlike the GET method, the form values is NOT visible in the address bar of the new browser tab.
Fill in and submit the form, then reload the page, start to fill in the form again - and see how autocomplete works.
Then, try to set autocomplete to "off".
The novalidate attribute indicates that the form input is not to be validated on submit:
The select element defines a drop-down list:
The select element defines a drop-down list:
Visible Values:Use the size attribute to specify the number of visible values.
Use the multiple attribute to allow the user to select more than one value.
Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.
The textarea element defines a multi-line input field.
Comment:Use CSS to change the size of the textarea:
The <button>Element