What is <textarea> in HTML? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is <textarea> in HTML?

what is <textarea> in HTML? i didnt see anything on the course about that

28th Jun 2017, 6:57 AM
Zara suto
Zara suto - avatar
5 Answers
+ 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.
28th Jun 2017, 7:13 AM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 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.
28th Jun 2017, 10:11 PM
Aina Oluwafemi
Aina Oluwafemi - avatar
+ 3
The <textarea> tag defines a multi-line text input control
29th Jun 2017, 6:36 PM
S@¢#in S#i£K€
+ 2
you can enter a long text in <textarea> including new lines
28th Jun 2017, 8:13 AM
⏩▶Clau◀⏪
⏩▶Clau◀⏪ - avatar
0
Tag defining multi-line text input control
28th Jun 2017, 9:54 AM
Nomeh Uchenna Gabriel
Nomeh Uchenna Gabriel - avatar