The HTML <label> for Attribute is used to specify the type of form element a label is bound to.
Syntax:
<label for="element_id">
Attribute Values: It contains the value i.e element_id which specify the id of the element that the label is bound to.
Example: This Example that illustrates the use of for attribute in <label> element.
html
<!DOCTYPE html>
< html >
< head >
< title >
HTML | for Attribute
</ title >
< style >
body {
font-size: 20px;
}
</ style >
</ head >
< body style="text-align:center">
< h1 style="color:green">
GeeksforGeeks
</ h1 >
< h2 >
HTML | <label>for Attribute
</ h2 >
< form >
< label for="student">
Student
</ label >
< input type="radio"
name="Occupation"
id="student"
value="student">
< br >
< label for="business">
Business
</ label >
< input type="radio"
name="Occupation"
id="business"
value="business">
< br >
< label for="other">
Other
</ label >
< input type="radio"
name="Occupation"
id="other"
value="other">
</ form >
</ body >
</ html >
|
Output:
Supported Browsers: The browser supported by HTML | <label>for Attribute are listed below:
- Google Chrome
- Edge version 12 and above
- Internet Explorer
- Firefox
- Opera
- Safari