Get your own website Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The form novalidate attribute</h1>
<p>The novalidate attribute specifies that the form data should not be validated when submitted.</p>
<form action="https://www.w3schools.com/action_page.php" novalidate>
  <label for="email">Enter your email:</label>
  <input type="email" id="email" name="email" required><br><br>
  <input type="submit" value="Submit">
</form>
<p><strong>Note:</strong> The novalidate attribute of the form tag is not supported in Safari 10 (or earlier).</p>
</body>
<!-- Mirrored from www.w3schools.com/html/tryit.asp?filename=tryhtml5_form_novalidate by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 16:46:48 GMT -->
</html>