<form>

Create forms to retrieve user input and data.

Attribute Description
action Specify the URL of the script to be run upon submission of this form. Use a local URL script or an internet URL script.
class Classify or name your elements. For instance, if you classify several paragraph elements the same name, using CSS it is possible to give them all the same styles in one line of code.
dir Change the display of text from left to right, or right to left. Very useful in language translation.
id Specify an ID for your elements.
lang Define the language to display your element in. Here's a link to the abbreviations of languages. http://www.oasis-open.org/cover/iso639a.html
method Tells the browser to post the action of the form.
name Choose a name for an element. Names can be used with other web programming languages to unify your site or run scripts obtaining user info.
style Used to create inline styles such as CSS.
target Defines the window/frame to be recieving the requested document.
title Places a "pop-up" title for an element upon mouse over. Similar to "help" pop-ups in word programs.

Code:

<form>Name:<input type="text" size="10"></form>

Display:

Name: