xxxxxxxxxx
<html>
<body>
<h1>Maxlength Attribute Example for the textarea Element</h1>
<p>
Despite the textarea box being 60 characters in width the maximum number
of characters is just 25.
</p>
<label for="message">Leave a message</label>
<textarea
id="message"
name="message"
rows="6"
cols="60"
minlength="10"
maxlength="25"
></textarea>
</body>
</html>