HTML <label> form Attribute
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 »
Browser Support

The form attribute is supported in all major browsers.
Definition and Usage
The form attribute specifies one or more forms the <label> element belongs to.
Differences Between HTML 4.01 and HTML5
The form attribute is new in HTML5.
Syntax
Attribute Values
| Value |
Description |
| form_id |
Specifies a space-separated list of id's to one or more forms the <label> element belongs to |
HTML <label> tag
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]