The <textarea> tag defines a multi-line text input control.
A text area can hold an unlimited number of characters, and the text renders in a fixed-width font.
The size of a text area can be specified by the cols and rows attributes, or even better; through CSS’ height and width properties.
<!DOCTYPE html> <html> <head> <title>Textarea HTML</title> </head> <body> <form action="nextPage.php"> <textarea rows="4" cols="25"> </textarea> <br> <input type="submit"> </form> </body> </html>