Last Updated : 11 Jul, 2025
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:
Syntax:
<form novalidate>
Example: This Example illustrates the use of novalidate attribute in form Element.
html
<!DOCTYPE html>
<html>
<head>
<title>
HTML novalidate Attribute
</title>
</head>
<body style="text-align:center;">
<h1>
GeeksForGeeks
</h1>
<h2>
HTML | novalidate Attribute
</h2>
<form action="#"
method="get"
target="_self" novalidate>
Name:
<input type="text">
<input type="submit"
id="Geeks"
name="myGeeks"
value="Submit @ geeksforgeeks"
formTarget="_blank">
</form>
</body>
</html>
Output:
Supported Browsers:
The browser supported by novalidate attribute are listed below:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4