game-engine/index.html

35 lines
705 B
HTML
Raw Normal View History

2024-07-07 22:50:34 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Baena</title>
<link
rel="stylesheet"
href="index.css"
/>
</head>
2024-07-07 22:50:34 -05:00
<body>
<div id="resources">
<img
id="overworld"
src="resources/overworld.png"
/>
2024-07-07 22:50:34 -05:00
</div>
<div id="container">
<button id="debug">Debug</button>
<button id="level1">Level 1</button>
<button id="level2">Level 2</button>
<canvas id="game"></canvas>
</div>
<script
type="module"
src="index.js"
></script>
</body>
</html>