-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
124 lines (123 loc) · 3.51 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="theme-color" content="black" />
<meta name="msapplication-navbutton-color" content="black" />
<meta name="msapplication-TileColor" content="black" />
<meta name="msapplication-config" content="/dk-redux/browserconfig.xml" />
<meta
name="msapplication-TileImage"
content="/dk-redux/mstile-150x150.png"
/>
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="format-detection" content="telephone=no" />
<meta name="robots" content="index, follow" />
<meta name="application-name" content="DK-Redux" />
<meta name="apple-mobile-web-app-title" content="DK-Redux" />
<meta
name="description"
content="A reduxed-remixed-remake of Donkey Kong, the original arcade game from 1981, built with React, Redux Toolkit and SCSS."
/>
<meta
name="keywords"
content="HTML, JavaScript, TypeScript, React, Redux, Redux Toolkit, CSS, SCSS, Game, Donkey Kong, Duck Hunt, Arcade"
/>
<link
rel="icon"
type="image/png"
sizes="36x36"
href="/android-chrome-36x36.png"
/>
<link
rel="icon"
type="image/png"
sizes="48x48"
href="/android-chrome-48x48.png"
/>
<link
rel="icon"
type="image/png"
sizes="72x72"
href="/android-chrome-72x72.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/android-chrome-512x512.png"
/>
<link
rel="apple-touch-icon"
sizes="57x57"
href="/apple-touch-icon-57x57.png"
/>
<link
rel="apple-touch-icon"
sizes="60x60"
href="/apple-touch-icon-60x60.png"
/>
<link
rel="apple-touch-icon"
sizes="72x72"
href="/apple-touch-icon-72x72.png"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="/apple-touch-icon-76x76.png"
/>
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" href="/favicon.ico" />
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-E2NXS5RG7W"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-E2NXS5RG7W");
</script>
<title>DK-Redux</title>
<style>
@font-face {
font-family: "Press Start 2P";
src: url("/fonts/Press_Start_2P/PressStart2P-Regular.ttf")
format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Nanum Pen Script";
src: url("/fonts/Nanum_Pen_Script/NanumPenScript-Regular.ttf")
format("truetype");
font-weight: normal;
font-style: normal;
}
body {
background: black;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>