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 de motif d'entrée</h1> <p>Un formulaire avec un champ de recherche qui NE PEUT PAS contenir les caractères suivants : ' ou "</p> <form action="https://www.w3schools.com/action_page.php"> <label for="search">Recherche :</label> <input type="search" id="search" name="search" pattern="[^'\x22]+" title="Invalid input"> <input type="submit"> </form> </body> </html>