HTML Form Elements
This chapter describes all HTML form elements.
The <input> Element
The most important form element is the <input> element.
The <input> element can vary in many ways, depending on the type attribute.
All HTML input types are covered in the next chapter.
The <select> Element (Drop-Down List)
The <select> element defines a drop-down list:
Example
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
The <option> elements defines the options to select.
The list will normally show the first item as selected.
You can add a selected attribute to define a predefined option.
The <textarea> Element
The <textarea> element defines a multi-line input field (a text area):
Example
The cat was playing in the garden.
</textarea>
This is how the HTML code above will be displayed in a browser:
The <button> Element
The <button> element defines a clickable button:
This is how the HTML code above will be displayed in a browser:
HTML5 Form Elements
HTML5 added the following form elements:
- <datalist>
- <keygen>
- <output>
By default, browsers do not display unknown elements. New elements will not destroy your page.
HTML5 <datalist> Element
The <datalist> element specifies a list of pre-defined options for an <input> element.
Users will see a drop-down list of pre-defined options as they input data.
The list attribute of the <input> element, must refer to the id attribute of the <datalist> element.
![Opera Opera](../images/compatible_opera2020.gif)
![Safari Safari](../images/incompatible_safari2020.gif)
![Chrome Chrome](../images/compatible_chrome2020.gif)
![Firefox Firefox](../images/compatible_firefox2020.gif)
![Internet Explorer Internet Explorer](../images/compatible_edge2020.gif)
Example
An <input> element with pre-defined values in a <datalist>:
<input list="browsers">
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
</form>
HTML5 <keygen> Element
The purpose of the <keygen> element is to provide a secure way to authenticate users.
The <keygen> element specifies a key-pair generator field in a form.
When the form is submitted, two keys are generated, one private and one public.
The private key is stored locally, and the public key is sent to the server.
The public key could be used to generate a client certificate to authenticate the user in the future.
![Opera Opera](../images/compatible_opera2020.gif)
![Safari Safari](../images/compatible_safari2020.gif)
![Chrome Chrome](../images/compatible_chrome2020.gif)
![Firefox Firefox](../images/compatible_firefox2020.gif)
![Internet Explorer Internet Explorer](../images/incompatible_edge2020.gif)
Example
A form with a keygen field:
Username: <input type="text" name="user">
Encryption: <keygen name="security">
<input type="submit">
</form>
HTML5 <output> Element
The <output> element represents the result of a calculation (like one performed by a script).
![Opera Opera](../images/compatible_opera2020.gif)
![Safari Safari](../images/compatible_safari2020.gif)
![Chrome Chrome](../images/compatible_chrome2020.gif)
![Firefox Firefox](../images/compatible_firefox2020.gif)
![Internet Explorer Internet Explorer](../images/incompatible_edge2020.gif)
Example
Perform a calculation and show the result in an <output> element:
oninput="x.value=parseInt(a.value)+parseInt(b.value)">
0
<input type="range" id="a" name="a" value="50">
100 +
<input type="number" id="b" name="b" value="50">
=
<output name="x" for="a b"></output>
<br><br>
<input type="submit">
</form>
Test Yourself with Exercises!
Exercise 1 » Exercise 2 » Exercise 3 »
HTML Form Elements
= new in HTML5.
Tag | Description |
---|---|
<form> | Defines an HTML form for user input |
<input> | Defines an input control |
<textarea> | Defines a multiline input control (text area) |
<label> | Defines a label for an <input> element |
<fieldset> | Groups related elements in a form |
<legend> | Defines a caption for a <fieldset> element |
<select> | Defines a drop-down list |
<optgroup> | Defines a group of related options in a drop-down list |
<option> | Defines an option in a drop-down list |
<button> | Defines a clickable button |
<datalist> | Specifies a list of pre-defined options for input controls |
<keygen> | Defines a key-pair generator field (for forms) |
<output> | Defines the result of a calculation |