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-default-attribute/ below:

HTML | <track> default Attribute

HTML | <track> default Attribute

Last Updated : 19 Jul, 2022

The HTML <track> default Attribute is a Boolean attribute. This attribute is used to specify that the track will be enabled if the user's preferences do not indicate that another track would be more appropriate. 

Note: With a default attribute, there must not be more than one track element per media element. 

Syntax: 

<track src="subtitles_en.vtt" default>

Below Example illustrates the use of default attribute in <track> element. 

Example: 

html
<html>

<head>
    <style>
        body {
            text-align: center;
        }
        
        h1 {
            color: green;
        }
    </style>
</head>

<body>
    <h1>GeeksforGeeks</h1>
    <h2> 
    HTML &lt;track&gt;default Attribute 
</h2>

    <video width="100" 
           height="100" 
           controls>

        <track src=
"https://write.geeksforgeeks.org/wp-content/uploads/11.mp4" 
               kind="subtitles" 
               srclang="en"
               label="English" 
               default>

            <source id="myTrack" 
                    src=
"https://write.geeksforgeeks.org/wp-content/uploads/11.mp4" 
                    type="video/mp4">

    </video>
</body>

</html>

Output:

  

Supported Browsers: The browsers supported by HTML <track> default 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