boxes/index.html

19 lines
472 B
HTML
Raw Permalink Normal View History

2023-06-23 09:00:12 +00:00
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>boxes</title>
<script defer type="module" src="js/main.mjs"></script>
</head>
<body>
2023-06-24 07:41:25 +00:00
<canvas id="canvas" width="729" height="729"></canvas>
<br>
<button id="save">save game to file</button>
<button id="load">load game from file</button>
2023-06-24 15:38:04 +00:00
<button id="restart">create new world</button>
2023-06-23 09:00:12 +00:00
</body>