a simple google search answered your question in 5 seconds... try that next time.
here is what i found:
There is no way in HTML to code a maximum length value for HTML TEXTAREA fields, such that the typing is halted at that length in the way an INPUT text field does. You can, however, at least do a test on the client when the user leaves the field, using Javascript. This may be a little less annoying than their getting an error from a server-side error check. Try:
<textarea name="description" rows="10" cols="50" wrap="virtual"
onChange="if (this.value.length > 2000) {alert('Sorry, Description must be limited to 2000 Characters.')};">
#Description#
</textarea>