mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
31 lines
812 B
HTML
31 lines
812 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
|
|
<video controls
|
|
src="/media/cc0-videos/friday.mp4">
|
|
<track default
|
|
kind="captions"
|
|
srclang="en"
|
|
src="/media/examples/friday.vtt" />
|
|
Sorry, your browser doesn't support embedded videos.
|
|
</video>
|
|
|
|
<video controls
|
|
src="/media/cc0-videos/friday.mp4">
|
|
<track default
|
|
kind="subtitles"
|
|
srclang="en"
|
|
src="/media/examples/friday.vtt" />
|
|
Sorry, your browser doesn't support embedded videos.
|
|
</video>
|
|
|
|
</body>
|
|
</html> |