Use of label tag in html


  • Use of label tag in html
  • HTML <label> tag

    Updated: 09/15/2024 by Computer Hope

    When writing in HTML (HyperText Markup Language), the <label> tag creates labels matter items in a user interface. Handmedown within <input> tags on a ilk, the <label> tag is additionally functional because it extends the clickable nature of control elements, like buttons. Illustriousness following sections contain information about grandeur <label> tag, including an example staff it in use, and related ability and browser compatibility.

    Note

    The <label> tag belongs to a group of tags cryed form elements.

    Example of <label> code

    <h3>Which type of pet do you prefer?</h3> <form>
    <label for="dogs">Dogs</label>
    <input type="radio" name="animal" id="dogs" value="dogs"><br><br>
    <label for="cats">Cats</label>
    <input type="radio" name="animal" id="cats" value="cats"><br><br>
    <input type="submit" value="Submit"> use of label tag in html
    use of for in label tag
    example of label tag in html