Text Links Ads : Marketing Tips Store : Search Engine Optimization Strategies
WebPosition Gold Pro : Domain Registration Bank : Optilink Software : GoDefy
Mike's Marketing Tools : Mike's Ecommerce Software : Text Links Guide
 
Web HTML-HTML.com
You are here: HTML Codes > Forms > <INPUT ...> > TYPE

TYPE = TEXT

TEXT creates a text entry field (the most popular type of data entry field):

this code produces this
<FORM ACTION="../cgi-bin/html/mycgi.pl">
name: <INPUT TYPE=TEXT NAME="realname">
<P><INPUT TYPE=SUBMIT VALUE="submit">
</FORM>
name:

TEXT is the default input type (if you want a text field, you don't even need to use the TYPE attribute).

this code produces this
<FORM ACTION="../cgi-bin/html/mycgi.pl">
<!-- note absence of TYPE attribute -->
name: <INPUT NAME="realname">
<P><INPUT TYPE=SUBMIT VALUE="submit">
</FORM>
name:

The behavior of TEXT fields can be modified using these attributes:

TYPE=CHECKBOX >>>

Copyright © 2002-8 Art Dacor USA LLC. All Rights Reserved.
3727 West Magnolia Blvd #489, Burbank, CA, 91505, USA.
www.HTML-HTML.com