Text Field
Text Field
DescriptionThe tag to put a text field on your web site is <INPUT TYPE="TEXT" NAME="XXXX">. XXXX is replaced with the name of the field. This line goes within the starting and closing mandatory form tags.
Code
<FORM METHOD="POST" ACTION="script.pl">

<INPUT TYPE="TEXT" NAME="box1">

</FORM>
Output
Practice
Advertisements