forked from Zikoat/infinite-minesweeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 799 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<meta charset="utf-8" />
<title>Minefield Resurrected</title>
</head>
<body>
<button onclick="toggleMenu()" class="menubutton ui">
<img alt="menu button" id="menubutton" />
</button>
<div class="menu ui" id="menu" style="display: none">
<div><a href="https://discord.gg/XzpSVxx">Discord</a></div>
<div>
<a href="https://github.com/Zikoat/infinite-minesweeper">Source code</a>
</div>
<!-- todo add settings -->
<div>Score:<span id="score"></span></div>
<div><button onclick="restart()">restart</button><br /></div>
<hr />
<div>Zoom: Ctrl +</div>
<div>Keyboard controls:<br />arrow keys and z/x</div>
</div>
<script src="./src/index.ts" async type="module"></script>
</body>
</html>