HTML Forms :
TEXT FIELD
T
ext fields are one line areas that allow the user to input text.
I
f you want several lines you should use a
text area
instead.
S
ETTINGS:
B
elow is a listing of valid settings for text fields:
HTML
EXPLANATION
EXAMPLE
text
size=
maxlength=
name=
value=
align=
tabindex=
One line text field
Characters shown.
Max characters allowed.
Name of the field.
Initial value in the field.
Alignment of the field.
Tab order of the field.
T
he
size
option defines the width of the field. That is how many visible characters it can contain.
T
he
maxlength
option defines the maximum length of the field. That is how many characters can be entered in the field.
If you do not specify a maxlength, the visitor can easily enter more characters than are visible in the field at one time.
T
he
name
setting adds an internal name to the field so the program that handles the form can identify the fields.
T
he
value
setting defines what will appear in the box as the default value.
T
he
align
setting defines how the field is aligned.
Valid entries are: TOP, MIDDLE, BOTTOM, RIGHT, LEFT, TEXTTOP, BASELINE, ABSMIDDLE, ABSBOTTOM. The alignments are explained in the image section. You can learn about the different alignments
here
.
T
he
tabindex
setting defines in which order the different fields should be activated when the visitor clicks the tab key.
A
N EXAMPLE:
L
ook at this HTML example:
<html>
<head>
<title>My Page</title>
</head>
<body>
<form name="myform" action="http://www.mydomain.com/myformhandler.cgi" method="POST">
<div align="center">
<br><br>
<input type="text" size="25" value="Enter your name here!">
<br><br>
</div>
</form>
</body>
</html>
A
nd the resulting output from it:
<< PREVIOUS
READ MORE >>
HTML FORMS
INTRODUCTION
EXAMPLES
CGI SCRIPTS
THE FORM TAG
FORM FIELDS
TEXT
PASSWORD
HIDDEN
TEXT AREA
CHECK BOX
RADIO BUTTON
DROP-DOWN MENU
SUBMIT BUTTON
RESET BUTTON
IMAGE BUTTON
QUICK REFERENCE
TAKE THE QUIZ!
HTML TUTORIAL
HTML BASICS
HTML TEXT
HTML LISTS
HTML IMAGES
HTML LINKS
HTML BACKGROUNDS
HTML TABLES
HTML FRAMES
HTML FORMS
HTML METATAGS
HTML HEXCOLORS
HTML QUIZ
HTML REFERENCE
ALL HTML TAGS
HTML 4.0
HTML 3.2
HTML 2.0
NETSCAPE TAGS
MICROSOFT TAGS
TOP TUTORIALS
HTML
JAVASCRIPT
CSS
FLASH
JAVA APPLETS
EchoEcho Hosting!
5000 MB Server space !!
60 GB Traffic/Month !!
Php dynamic pages
Perl/cgi scripts
MySQL databases
Password protected folders
Advanced log file stats
Spam & Virus checked mail
Auto-installed scripts:
Forums, Chat, Shop,
Photo album, Livehelp etc.
Nothing beats this deal:
$7.50/month!
» Read More
DEVELOPER TIP!
"Better Than Books - As Easy As It Gets!"