Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h2>Champ d'email</h2> <p>La<strong>input type="email"</strong>est utilisé pour les champs de saisie qui doivent contenir une adresse e-mail :</p> <form action="https://www.w3schools.com/action_page.php"> <label for="email">Entrez votre e-mail :</label> <input type="email" id="email" name="email"> <input type="submit" value="Submit"> </form> </body> </html>