Return
Forms
Start Tag
Content
End tag
Notes
Element
Attribute
Value
<
form
action=
enctype=
method=
name=
onsubmit=
"http://action-page"
"mailto:you@abc.com"
"text/plain"
"get"
"post"
"reference name"
"function()" some call action
>
form input tags, text and or images.
</
form
>
This tag is used to define the action, and the method of sending the data of the form.
The get method is default if undefined.
<
input
checked=
maxlength=
name=
size=
type=
value=
"checked"
"25"
"ref_name"
"10"
"hidden"
"button"
"checkbox"
"image"
"password"
"radio"
"reset"
"submit"
"text"
"initial value"
/>
Text and or images.
none
This tag provides for input data types and data, submit and reset buttons, in the html page within the
form
tag.
You must name all input fields.
<
select
name=
size=
multiple=
"reference name"
"9"
"multiple"
>
option
tags only.
</
select
>
This tag is used to define a menu on a form.
<
option
value=
"anything"
/>
Text and or images.
Nevada
Utah
California
Idaho
none
This tag is used to define the different menu options for the
select
tag.
Return
© 2003, 2004, 2005, 2006 & 2007 by Charles Muench. All rights reserved.