breakout71/src/levels_editor.html

18 lines
476 B
HTML
Raw Normal View History

<!doctype html>
2025-03-13 09:31:22 +01:00
<html lang="en">
<head>
<meta charset="UTF-8" />
2025-03-13 09:31:22 +01:00
<title>Level editor</title>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎨</text></svg>"
2025-03-13 09:31:22 +01:00
/>
<link rel="stylesheet" href="./levels_editor.less" />
</head>
<body>
<div id="app"></div>
2025-03-13 09:31:22 +01:00
<script type="module" src="levels_editor.tsx"></script>
</body>
</html>