This tutorial teaches you the basics of a textarea, and how you can adjust the size.
A textarea is kind of like a box filled with text. They may be used for forms or to show a code.
Demo
This is an example of a textarea:
The Basic Code
The basic code you need for a textarea is:
You need to paste that wherever you want a textarea to appear. Replace the "TEXT HERE" with whatever you want it to say inside.
Adjustments
To adjust the size, you need to add in cols="0" and rows="0" into the tags. Replace the zero with any number you wish.
Cols: How wide the textarea will be. Rows: The number of rows, simply like the height of the textarea.
If this tutorial helped you in any way, a Link back is appreciated!