HTML Forms

This page explains the basics of creating HTML forms.

HTML enables us to create forms. This is where our websites can become more than just a nice advertising brochure. Forms allow us to build more dynamic websites that allow our users to interact with it.

An HTML form is made up of any number of form elements. These elements enable the user to do things such as enter information or make a selection from a preset options.

In HTML, a form is defined using the <form></form> tags. The actual form elements are defined between these two tags.

Like this:

The <input> Tag

This is the most commonly used tag within HTML forms. It allows you to specify various types of user input fields such as text, radio buttons, checkboxes etc.

Text

Text fields are used for when you want the user to type short amounts of text into the form.

Try it

Radio Buttons

Radio buttons are used for when you want the user to select only one option from a pre-determined set of options.

Note that the user can select one option only. If they click another option, the new option will be selected and the first option will be deselected.

To enable the user to make multiple selections, use checkboxes (below).

Try it

Checkboxes

Checkboxes are similar to radio buttons, but they enable the user to make multiple selections.

Checkboxes should be used when you want to allow the users to make more than one selection.

Try it

Submit

The submit button allows the user to actually submit the form.

Try it

Select Lists

A select list is a dropdown list with options. This allows the user to select one option from a list of pre-defined options.

The select list is created using the <select> element in conjunction with the <option> element.

Try it

Textarea

You can use the <textarea> element to enable users to enter larger blocks of text than with the <input> tag.

It's often a good idea to use the maxlength attribute to restrict the user's input to a certain number of characters. You can also use the cols and rows attributes to adjust the width and height.

Try it

Form Action

Usually when a user submits the form, you need the system to do something with the data. This is where the action page comes in. The action page is the page that the form is submitted to. This page could contain advanced scripts or programming that inserts the form data into a database or emails an administrator etc.

Creating an action page is outside the scope of this tutorial. In any case, many web hosts provide scripts that can be used for action page functionality, such as emailing the webmaster whenever the form has been completed. For now, we will simply look at how to submit the form to the action page.

You nominate an action page with the action attribute.

Try it

Form Method

You may have noticed the above example uses a method attribute. This attribute specifies the HTTP method to use when the form is submitted.

Possible values are:

get
The form data is appended to the URL when submitted. This means you can actually see the form variables in your browser's address bar when the form is submitted. This can be handy for non-sensitive data such as a search engine's results page. It also allows you to bookmark the page and even link to it from another web page.
post
The form data is not appended to the URL.

Providing this attribute is optional. If you don't provide it, the method will be post.