<html>
<head>
<title>CodeAve.com(Forms: Text Area Box)</title>
</head>
<body bgcolor="#FFFFFF">
Basic Text Area Box<br>
<form action="post.asp"
method="post">
<textarea name="Text Area"></textarea>
<input type="submit"
value="Submit">
</form>
<!-- The basic text area input box -->
<p>
Text Area Box (with a defined width)<br>
<form action="post.asp"
method="post">
<textarea name="Text Area"
cols="25"></textarea>
<input type="submit"
value="Submit">
</form>
<!-- Text Area Input Box with a defined column
width
cols="numeric" controls the width in columns of the text area-->
<p>
Text Area Box (with a defined height)<br>
<form action="post.asp"
method="post">
<textarea name="Text Area"
rows="8"></textarea>
<input type="submit"
value="Submit">
</form>
<!-- Text Area Input Box with a defined height
rows="numeric" controls the height of the text area-->
<p>
Text Area Box (with a defined height and width)<br>
<form action="post.asp"
method="post">
<textarea name="Text Area"
rows="5"
cols="25"></textarea>
<input type="submit"
value="Submit">
</form>
<!-- Text Area Input Box with a defined height
and width
utilize both the rows and cols tags....
rows="numeric" controls the height of the text area
cols="numeric" controls the width of the text area -->
</body>
</html>
|