Open In App

HTML | <track> src Attribute

The HTML <track> src Attribute is used to specify the URL of the track. 

Syntax: 



<track src="subtitles_en.vtt">

Attribute Values: It contains single value URL which is used to specify the URL of the track. 

Below example illustrates the use of src attribute in <track> element. 



Example: 




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

Output:

  

Supported Browsers: The browser supported by HTML <track> src Attribute are listed below:

Article Tags :