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

17 lines
541 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>
<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>