-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (25 loc) · 920 Bytes
/
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Chimp</title>
<meta name="description" content="Chimp is a game for chimpanzees">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-63907239-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-63907239-2');
</script>
</head>
<body>
<div class="gameboard"></div>
<a class="info" href="#info">i</a>
<footer id="info">
<h1>Chimp</h1> is a game for based on <a href="https://twitter.com/brianroemmele/status/1213860120058220546">this tweet</a>, brought to you by <a href="https://violetoffice.com/">Violet Office</a>.
</footer>
<script src="./script.js"></script>
</body>
</html>