-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
64 lines (64 loc) · 2.39 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-PN9HFGZ2VS"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-PN9HFGZ2VS');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Minesweeper made with emoji. The most fun way to play minesweeper! 😄"
/>
<meta
name="keywords"
content="絵文字マインスイーパー, minesweeper, emoji, emojis, emoji minesweeper,マインスイーパー, 絵文字, minesweeper smiley, minesweeper online, online minesweeper, flower field, javascript, p5.js"
/>
<meta name="author" content="Michael Kolesidis" />
<title>Emoji Minesweeper</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Font -->
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap"
rel="stylesheet"
/>
<!-- Japanese font -->
<link
href="https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap"
rel="stylesheet"
/>
<link rel='icon' href='./assets/favicon.ico' type='image/x-icon'/ >
<link rel="stylesheet" href="./styles/style.css" />
<link rel="canonical" href="https://emojiminesweeper.com/" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/apple-touch-icon.png"
/>
<link rel="manifest" href="manifest.webmanifest" />
<script src="./src/themes.js" type="text/javascript"></script>
<script src="./src/main.js" type="module" defer></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.11.2/p5.min.js"
integrity="sha512-1YMgn4j8cIL91s14ByDGmHtBU6+F8bWOMcF47S0cRO3QNm8SKPNexy4s3OCim9fABUtO++nJMtcpWbINWjMSzQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="./src/emojiMinesweeper.js" type="text/javascript"></script>
<script src="./src/Square.js" type="text/javascript"></script>
</head>
<body>
<p style="display: none" id="p5_loading"></p>
</body>
</html>