It specifies the form data should not be validated when submitted.
Syntax for novalidate Attribute in HTML:
<formname= filecontentnovalidate></form>
Sample coding for novalidate Attribute in HTML:
<!DOCTYPE html><html><body><formaction="novalidate.htm"novalidate>
E-mail: <inputtype="email"name="user email"><inputtype="submit"></form><p><strong>Note:</strong>The novalidate attribute of the form tag is
not supported in Internet Explorer 9 and earlier versions, or in Safari.
</p></body></html>
Code Explanation for novalidate Attribute in HTML:
Here the novalidate attribute is given within the form tag for the data which should not be validate and submitted.