Forms: other types of field
The first forms tutorial was mainly about getting started and the <INPUT> field. In this one we're going to learn about other fields, and a few tricks.
The <TEXTAREA> field
If you want a one-line text box, you use <INPUT type="text">. If you want a multiple-line box, you use
<TEXTAREA rows=number cols=characters></TEXTAREA>
For instance: <TEXTAREA rows=3 cols=60></TEXTAREA> produces:
Now take a look at some tips on how to design forms for ease of use
Written by J. Koren for Unesco
©1998