Appendix C: Forms Fields
Form Field
Sample Syntax
One Line Text Box
<input type="text" name="T1" size="20">
Scrolling Text Box
<textarea rows="2" name="S1" cols="20">
</textarea>
Check Box
<input type="checkbox" name="C1" value="ON">
Radio Button
<input type="radio" value="V1" checked name="R1">
Drop-Down Menu
Choice One
Choice Two
Choice Three
<select name="d1" size="1">
<option value="1">Choice One</option>
<option value="2">Choice Two</option>
<option value="3">Choice Three</option>
</select>
Push Button
<input type="button" value="Button" name="B1">