-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.21 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="./favicon.ico">
<title>Dark Pixels</title>
<link rel="stylesheet" href="style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3KCTFLSHYB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-3KCTFLSHYB');
</script>
</head>
<body>
<header>
<h1>Dark Pixels</h1>
<img src="./imgs/dark.png">
<p>random map - permanent death - grid based - no modal - complex - hard mobs </p>
</header>
<canvas id="game"></canvas>
<div class="only">Only desktop</div>
<footer>
2021 | Developed by <a href="https://baltazarparra.github.io" target="_blank">baltz</a>
</footer>
<script src="./kaboom-min.js"></script>
<script defer type="module" src="game.js"></script>
</body>
</html>