+ 1
What is <textarea> in HTML?
what is <textarea> in HTML? i didnt see anything on the course about that
5 Respuestas
+ 4
Taken from https://cheeze.club/j1rh
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 (usually Courier).
The size of a text area can be specified by the cols and rows attributes, or even better; through CSS' height and width properties.
+ 4
@Zara <textarea> is the tag you use in a form when you need to get an information from the user, in which the information needed is more than one line (multiple lines) is needed.
For example being asking the user to submit a simple profile information or a brief description of himself/herself.
+ 3
The <textarea> tag defines a multi-line text input control
+ 2
you can enter a long text in <textarea> including new lines
0
Tag defining multi-line text input control