Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <label> form Attribute

❮ HTML <label> tag

Example

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

<form action="/action_page.php" id="form1">
  <input type="radio" name="gender" id="male" value="male"><br>
  <label for="female">Female</label>
  <input type="radio" name="gender" id="female" value="female"><br>
  <label for="other">Other</label>
  <input type="radio" name="gender" id="other" value="other"><br><br>
  <input type="submit" value="Submit">
</form>

<label for="male" form="form1">Male</label>
Try it Yourself »

Definition and Usage

The form attribute specifies the form the label belongs to.

The value of this attribute must be equal to the id attribute of a <form> element in the same document. 


Browser Support

Attribute
form Yes Yes Yes Yes Yes

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