HTML <label> form Attribute

HTML label Tag Reference HTML <label> tag

Example

A <label> element located outside a form (but still a part of the form):

<form action="demo_form.asp" id="form1">
  <input type="radio" name="sex" id="male" value="male"><br>
  <label for="female">Female</label>
  <input type="radio" name="sex" id="female" value="female">
  <input type="submit" value="Submit">
</form>

<label for="male" form="form1">Male</label>

Try it yourself »

Definition and Usage

The form attribute specifies one or more forms the <label> element belongs to.


Browser Support

Attribute
form Yes Yes Yes Yes Yes


Differences Between HTML 4.01 and HTML5

The form attribute is new in HTML5.


Syntax

<label form="form_id">

Attribute Values

Value Description
form_id Specifies the form element the <label> element belongs to. The value of this attribute must be the id attribute of a <form> element in the same document.


HTML label Tag Reference HTML <label> tag

Color Picker

colorpicker