Minesweeper/index.html
2022-05-15 16:55:34 +02:00

38 lines
754 B
HTML

<html>
<head>
<meta charset="UTF-8">
<script src="client.js"></script>
<style>
body {
font-family: arial;
}
div {
display: grid;
}
div > * {
grid-column-start: 1;
grid-row-start: 1;
}
img {
width: 50px;
height: 50px;
z-index: 0;
}
a {
z-index: 1;
margin: auto;
padding: auto;
font-size: 24px;
}
</style>
</head>
<body onload="init();">
<table id="Game"></table>
Minen: <input id="tMines" type="number" value="15" min="1" max="100"><br>
Breite: <input id="gWidth" type="number" value="10" min="5" max="100"><br>
Höhe: <input id="gHeight" type="number" value="10" min="5" max="100"><br>
<button onclick="resetGame();">Reset Game</button>
</body>
</html>