The HTML novalidate Attribute is used to specify that the form-data should not be validated when submitting the form. It is a Boolean attribute. It can be used with the <form> element.Â
Applicable:Â <form>
Syntax
<form novalidate>Example: This Example illustrates the use of novalidate attribute in form Element.Â
<!--Driver Code Starts-->
<!DOCTYPE html>
<html>
<head>
<title>
HTML novalidate Attribute
</title>
</head>
<body style="text-align:center;">
<h1>
GeeksForGeeks
</h1>
<h2>
HTML | novalidate Attribute
</h2>
<!--Driver Code Ends-->
<form action="#"
method="get"
target="_self" novalidate>
Name:
<input type="text">
<input type="submit"
id="Geeks"
name="myGeeks"
value="Submit @ geeksforgeeks"
formTarget="_blank">
</form>
<!--Driver Code Starts-->
</body>
</html>
<!--Driver Code Ends-->