mirror of
https://github.com/zoriya/v10.git
synced 2026-08-14 18:04:49 +00:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>VJS HTML Demo</title>
|
|
<link rel="preconnect" href="https://rsms.me/" />
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
|
|
<style>
|
|
body {
|
|
font-family:
|
|
InterVariable, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
'Noto Color Emoji';
|
|
margin: 0;
|
|
}
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="display: flex; flex-direction: column; min-height: 100vh; max-width: 960px; padding: 1rem">
|
|
<h1>Video.js 10 HTML Demos</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/minimal.html">Minimal Skin (imported)</a></li>
|
|
<li><a href="/minimal-eject.html">Minimal Skin (ejected)</a></li>
|
|
<li><a href="/frosted.html">Frosted Skin (imported)</a></li>
|
|
<li><a href="/frosted-eject.html">Frosted Skin (ejected)</a></li>
|
|
</ul>
|
|
</nav>
|
|
</body>
|
|
</html>
|