Open In App
Related Articles

HTML | <label> form Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML <label> form Attribute is used to specify that the <label> element can contain one or more forms.

Syntax:

<label form="form_id"> 

Attribute Values: It contains single value form_id which contains the value i.e form_id which specify one or more than the label element belongs to. The value of this attribute should be the id of the <form> element.

Example:




<!DOCTYPE html> 
<html
    <head
        <title
            HTML label form Attribute 
        </title
    </head
      
    <body style = "text-align:center"
          
        <h1 style = "color:green;"
            GeeksforGeeks 
        </h1
          
        <h2
            HTML label form Attribute 
        </h2
          
        <form action="#" method="get" id="GFG_form">
            <!-- Starts label tag from here -->
            <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
        </form>
          
        <label for="other" form="GFG_form">Other</label>
    </body
      
</html>                    


Output:

Supported Browsers: The browser supported by <label> form Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 30 May, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials