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 d'URL qui doit commencer par http:// ou https:// suivi d'au moins un caractère :</p> <form action="https://www.w3schools.com/action_page.php"> <label for="website">Page d'accueil :</label> <input type="url" id="website" name="website" pattern="https?://.+" title="Include http://"> <input type="submit"> </form> </body> </html>