game-engine/index.html

52 lines
1.1 KiB
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"
/>
2024-09-13 16:14:53 -05:00
<title>Game Engine</title>
2024-09-20 08:33:02 -05:00
<link
rel="preconnect"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
/>
<link
href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap"
rel="stylesheet"
/>
<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"
/>
<img
id="character"
src="resources/character.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>