Files
v10/packages/sandbox/templates/html/index.html
T

29 lines
928 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sandbox — HTML</title>
<link rel="stylesheet" href="../styles.css" />
</head>
<body>
<a
id="home-link"
href="/"
class="fixed top-3 left-3 hidden text-xs font-mono text-neutral-500 hover:text-neutral-900 transition-colors z-50"
aria-label="Back to sandbox home"
>&larr; More examples</a
>
<script>
if (window.self === window.top) {
document.getElementById('home-link').style.display = 'inline';
}
</script>
<div class="flex flex-col justify-center items-center gap-4 my-4">
<select id="skin-select" aria-label="Skin"></select>
<div id="player" class="w-full aspect-video max-w-4xl mx-auto"></div>
</div>
<script type="module" src="./main.ts"></script>
</body>
</html>