Quick Reference Sheets for Webmasters
Quick Reference sheets are packed full of useful information for all webmasters.
HTML Reference Sheet
HTML Tag List
<textarea>
This defines a textarea within a form that allows for multiple line entries.
Attributes
cols
Value(s) : number
Defines the number of columns for the text area.
rows
Value(s) : number
Defines the number of rows for the text area.
disabled
Value(s) : disabled
When the text area is first displayed, it will be disabled.
name
Value(s) : unique name
Specifies a unqiue name for the textarea.
readonly
Value(s) : readonly
The content of the textarea cannot be modified.
example:
<textarea cols="25" rows="5">
Here is some content.
</textarea>