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>L'élément textarea</h1> <form action="https://www.w3schools.com/action_page.php"> <p><label for="w3review">Revue de W3Schools :</label></p> <textarea id="w3review" name="w3review" rows="4" cols="50">Sur w3schools.com, vous apprendrez comment créer un site web. Ils proposent des tutoriels gratuits dans toutes les technologies de développement web.</textarea> <br> <input type="submit" value="Submit"> </form> <p>Click the "Submit" button and the form-data will be sent to a page on the server called "action_page.php".</p> </body> </html>