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> Tag


Example

Three radio buttons with labels:

<form action="/action_page.php">
  <label for="male">Male</label>
  <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>
Try it Yourself »

Definition and Usage

The <label> tag defines a label for several elements:

Proper use of labels with the elements above will benefit:

  • Screen reader users (will read out loud the label, when the user is focused on the element)
  • Users who have difficulty clicking on very small regions (such as checkboxes) - because when a user clicks the text within the <label> element, it toggles the input (this increases the hit area). 

The for attribute of the <label> tag should be equal to the id attribute of the related element to bind them together. 


Browser Support

Element
<label> Yes Yes Yes Yes Yes

Tips and Notes

Tip: A label is bound to an element either by using the "for" attribute, or by placing the element inside the <label> element.



Attributes

Attribute Value Description
for element_id Specifies which form element a label is bound to
form form_id Specifies which form the label belongs to

Global Attributes

The <label> tag also supports the Global Attributes in HTML.


Event Attributes

The <label> tag also supports the Event Attributes in HTML.


Related Pages

HTML DOM reference: Label Object


Default CSS Settings

Most browsers will display the <label> element with the following default values:

Example

label {
  cursor: default;
}
Try it Yourself »