28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
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">
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
|
|
</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 <canvas> 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>
|