generated from tversteeg/pixel-game-github-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (34 loc) · 1.1 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
<head>
<meta charset="utf-8">
<title>Fermi Paradox</title>
<link href="https://fonts.googleapis.com/css2?family=Geostar&display=swap" rel="stylesheet">
<style>
* {
text-align: center;
border-color: #426e5d;
color: #FFFFFF;
}
body { background-color: #20283d; }
h1 {
font-size: 40px;
font-family: 'Geostar', cursive;
}
</style>
</head>
<body>
<canvas id="glcanvas" tabindex="1" width="800" height="600" style="margin-left: auto; margin-right: auto; display: block; padding-left: 0; padding-right: 0; border-style: solid;"></canvas>
<h1>Fermi Paradox</h1>
<h2>How to play</h2>
<p>
Use the mouse to protect your home planet from the alien invasion.
</p>
<p>
Health pickups can only be picked up by shooting them.
</p>
<a href="https://github.com/tversteeg/ld46">Github</a>
-
<a href="https://ldjam.com/events/ludum-dare/46/fermi-paradox">Ludum Dare</a>
<!-- Minified and statically hosted version of https://github.com/not-fl3/miniquad/blob/master/native/sapp-wasm/js/gl.js -->
<script src="https://not-fl3.github.io/miniquad-samples/gl.js"></script>
<script>load("ld46.wasm");</script>
</body>