Open In App
Related Articles

HTML | label Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML label Attribute is used to specify the title of the Text Track. The title of the Text Track is used by the browser when listing available text tracks. It is used in <track> element. 
 

Syntax: 

<track label="English"> 

Supported Tags:

  • <track>
  • <option>
  • <optgroup>
  • <menu>
  • <menuitem>

Example:  

html




<!DOCTYPE html>
<html>
 
<head>
    <style>
        body {
            text-align: center;
        }
         
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>HTML  label Attribute</h2>
 
    <video width="100"
           height="100"
           controls>
 
        <track src=
               id="myTrack1"
               kind="subtitles"
               srclang="en"
               label="English"
               default>
 
            <source id="myTrack"
                    src=
                    type="video/mp4">
 
    </video>
</body>
 
</html>


Output: 
 

Supported Browsers: The browsers supported by label Attribute are listed below: 
 

  • Google Chrome 18.0
  • Internet Explorer 10.0
  • Firefox 31.0
  • Apple Safari 6.0
  • Opera 15.0

 


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 : 03 Dec, 2021
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials