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> <h1>Afficher un champ de nombre</h1> <form action="https://www.w3schools.com/action_page.php"> <label for="quantity">Quantité (entre 1 et 5) :</label> <input type="number" id="quantity" name="quantity" min="1" max="5"> <input type="submit"> </form> </body> </html>