Last Updated : 12 Jul, 2025
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:
Example:
html
<!DOCTYPE html>
<html>
<head>
<style>
body {
text-align: center;
}
h1 {
color: green;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>HTML Kind Attribute</h2>
<video width="100" height="100" controls>
<track src=
"https://write.geeksforgeeks.org/wp-content/uploads/11.mp4"
id="myTrack"
kind="subtitles"
srclang="en"
label="English"
default>
<source id="myTrack2"
src=
"https://write.geeksforgeeks.org/wp-content/uploads/11.mp4"
type="video/mp4">
</video>
</body>
</html>
Output:
Supported Browsers: The browsers supported by HTML kind 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