-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.59 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Ninja-themed Minesweeper Game">
<meta name="keywords" content="minesweeper, game, browser game, ninja, shuriken, mine, sweep">
<meta name="author" content="Coren Frankel"
<title>NinjaSweeper</title>
<link rel="stylesheet" href="game.css">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon_io/favicon-16x16.png">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="manifest" href="/assets/favicon_io/site.webmanifest">
</head>
<body>
<div id="header">
<h1 id="title">Ninja Sweeper</h1>
<button class="info" onclick="showTutorial()">i</button>
</div>
<div id="the-dojo">Still loading... try refreshing the page.</div>
<div id="instr"></div>
<div id="countdown"></div>
<p id="github">
<a href="https://github.com/coren-frankel" title="Coren Frankel's Github" target="_blank" onmouseenter="wow()">Coren Frankel 2023</a>
</p>
<cite>
<a href="https://www.flaticon.com/free-icons/ninja" title="ninja icons" id="cred" target="_blank">Ninja & Bush icons created by Freepik - Flaticon</a>
</cite>
<div class="gameover"></div>
<div id="tutorialWindow"></div>
<script src="game.js" defer></script>
</body>
</html>