Files
minesweeper.js/index.html
2018-05-11 14:20:19 +02:00

27 lines
859 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Minesweeper.js</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="icons/icon.ico">
<link rel="icon" type="image/png" href="icons/icon.png" sizes="32x32">
</head>
<body>
<div class="start-background">
<div class="start-container">
<h1>Minesweeper.js</h1>
<h3>A sweet, tasty, little Minesweeper game written in JavaScript with HTML5 &lt;canvas&gt; Element</h3>
<button id="startgame">Play!</button>
</div>
</div>
<script type="text/javascript" src="animations/click.js"></script>
<script type="text/javascript" src="animations/victory.js"></script>
<script type="text/javascript" src="game.js"></script>
<script type="text/javascript" src="minesweeper.js"></script>
</body>
</html>