Tuesday, November 19, 2024
Google search engine
HomeLanguagesJavascriptHTML | kind Attribute

HTML | kind Attribute

The HTML kind Attribute is used to specify the kind of the track. This attribute is only used in <Track> element. 

Syntax: 

<track src="subtitles_en.vtt" kind="subtitles" srclang="en">

Applicable:

  • <track>

Example: 

html




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


Output:

  

Supported Browsers: The browsers supported by HTML kind Attribute are listed below:

  • Google Chrome 23.0 and above
  • Edge 12.0 and above
  • Firefox 31.0 and above
  • Apple Safari 6.0 and above
  • Opera 12.1 and above
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen 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!

RELATED ARTICLES

Most Popular

Recent Comments