An HTML form is used to collect user input. The user input is most often sent to a server for processing. Forms are defined with the <form> element.
action - Where to send form data (URL)method - HTTP method: GET or POSTenctype - Encoding type (for file uploads: multipart/form-data)novalidate - Disable browser validationEdit the code below and click Run to see the result live.