mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
17 lines
552 B
HTML
17 lines
552 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 & Tailwind</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>
|