Home / code / html

The textarea

I this area the user can add multiple lines of text.
Anything between <TEXTAREA></TEXAREA> is the standard text.

The attribute NAME.
This gives the name to the textarea.
looks like:
<TEXTAREA NAME="thename"></TEXTAREA>

You can also make sure that it can't be changed. If you just want to show something.
<TEXTAREA NAME="thename" READONLY></TEXTAREA>

You can decide how many rows the can see.
<TEXTAREA NAME="thename" ROWS="5"></TEXTAREA>

You can decide the width of the textarea with COLS.
<TEXTAREA NAME="thename" COLS="50"></TEXTAREA>

 

TOP

Latest script:

 

Books: