mirror of
https://git.cluster.stumblestore.de/llamprecht/KnilchWeb.git
synced 2025-12-15 23:21:20 +01:00
22 lines
646 B
HTML
22 lines
646 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
</script>
|
|
</head>
|
|
<body onload="bodyLoad()" style="text-align: center;background-color: #C8C850;">
|
|
<h1 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif">Knilch Out</h1>
|
|
|
|
<canvas
|
|
id="Game"
|
|
width="90vh"
|
|
height="90vh"
|
|
style="border:1px solid #000000; margin-bottom: 1em;"
|
|
></canvas> <br>
|
|
<button onclick="changeGridsize(-1)">-</button>
|
|
<button onclick="repopulateGrid()">Restart</button>
|
|
<button onclick="changeGridsize(1)">+</button>
|
|
<br>
|
|
<button onclick="toggleEditMode()" id="edittoggle">Toggle Edit Mode</button>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|