formulario con text area html
<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Formulario con área de texto</title> </head> <body> <form action="procesar.php" method="post"> <label for="comentarios">Comentarios:</label><br> <textarea id="comentarios" name="comentarios" rows="5" cols="40" placeholder="Escribe aquí tus comentarios"></textarea><br> <button type="submit">Enviar</button> </form> </body> </html>