Path = Home : Webmaster Resources : Form Tips : How To Create A Text Field For A Form
A Text field will accept any type of alphanumeric text entry.
<input type="text" name="textfield">
<input name="textfield" type="text" size="40">
<input name="textfield" type="text" size="40" maxlength="60">
<input type="text" name="textfield" size="40" maxlength="60" style="color: #FF0000; font-family: Verdana; font-size: 12px; background-color: #FFFF66;">
<input type="text" name="textfield" value="Default text" size="40" maxlength="60" style="color: #FF0000; font-family: Verdana; font-size: 12px; background-color: #FFFF66;">