24 lines
No EOL
580 B
HTML
24 lines
No EOL
580 B
HTML
<!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>
|
|
|
|
<body>
|
|
<div id="resources">
|
|
<img id="overworld" src="resources/overworld.png">
|
|
</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> |