infinite-minesweeper/index.html

13 lines
295 B
HTML
Raw Normal View History

2024-08-16 22:25:16 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Infinite Minesweeper</title>
<script src="minesweeper.js" defer></script>
</head>
<body style="margin: 0; overflow: hidden">
<canvas id="minesweeper"></canvas>
</body>
</html>