A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-track-src-attribute/ below:

HTML | <track> src Attribute

HTML | <track> src Attribute

Last Updated : 19 Jul, 2022

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: 

html
<!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=
"https://media.geeksforgeeks.org/wp-content/uploads/20190626010302/ice_video_20190626-005104_edit_0.mp4" 
               kind="subtitles" srclang="en" label="English">

            <source id="myTrack" src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190626010302/ice_video_20190626-005104_edit_0.mp4" 
                                            type="video/mp4">
    </video>
</body>

</html>

Output:

  

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



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4