Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h1>L'attribut novalidate du formulaire</h1> <form action="https://www.w3schools.com/action_page.php" novalidate> <label for="email">Entrez votre e-mail :</label> <input type="email" id="email" name="email"><br><br> <input type="submit"> </form> <p><strong>Remarque :</strong>L'attribut novalidate de la balise form n'est pas pris en charge dans Safari 10 (ou une version antérieure).</p> </body> </html>