-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>TYPE COMMAND</title>
<link rel='shortcut icon' href='assets/images/favicon.ico'
type='image/x-icon'/ >
<meta
name="description"
content="An interactive typing practice game
much like Atari's Missile Command. Destroy falling missiles by
typing their containing words before they destroy your cities and missile
bases!"
/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-RQVE26S0G3"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-RQVE26S0G3");
</script>
<link rel="stylesheet" href="assets/css/reset.css" />
<link rel="stylesheet" href="assets/css/main.css" />
<script type="application/javascript" src="keymaster.js"></script>
<script type="application/javascript" src="lib/bundle.js"></script>
</head>
<body>
<!-- <Modal
isOpen={bool}
onAfterOpen={afterOpenFn}
onRequestClose={requestCloseFn}
closeTimeoutMS={n}
style={customStyle}
contentLabel="Modal"
>
<h1>Modal Content</h1>
<p>Etc.</p>
</Modal> -->
<canvas id="canvas"></canvas>
</body>
</html>