0
Good morning. I want to code html in textarea name body. thanks you.
write html in textarea name body type text https://code.sololearn.com/WG7j8nCLAugp/?ref=app
2 Réponses
+ 2
Hi Malick Diagne
The <textarea> tag defines a multi-line text input control.
The <textarea> is used to collect data from the user.
You may use the placeholder attribute to display a short hint in the text area before the user enters a value.
Example:
<textarea placeholder="A brief description for..."></textarea>
0
If I remember correctly you can also add rows="" and cols="" as attributes to adjust the textbox's size via character spaces.