<form>

The <form> tag defines a templated hypertext transition.

Attributes

Attribute Type Description
action URL Specifies where to send the form-data when a form is submitted
disabled disabled Specifies that the <form> should be disabled
enctype application/x-www-form-urlencoded, multipart/form-data or text/plain Specifies how the form-data should be encoded when submitting it to the server (only for method=’post’)
method get, post delete or patch Specifies the HTTP method to use when sending form-data
name string Specifies the form name
novalidate novalidate Specifies that the form should not be validated when submitted

Children

Examples