-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (57 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="UTF-8" />
<title>Space Invaders</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<!-- Styles -->
<link rel="stylesheet" href="src/styles/dat.gui.css" />
<link rel="stylesheet" href="src/styles/index.processed.css" />
</head>
<body>
<canvas id="canvas" tabindex="0"></canvas>
<div class="controls">
<h2>Controls</h2>
<p><b>Move:</b> Left and Right Arrows</p>
<p><b>Shoot:</b> Spacebar</p>
</div>
<div class="information">
<h1>Space Invaders</h1>
<h2>Developer:</h2>
<h3>Leonardo dos Santos Güths</h3>
<h2>Contact:</h2>
<div class="contact-info">
<a href="mailto:leoguths@gmail.com?subject=Space Invaders Game"
>leoguths@gmail.com</a
>
<a
href="https://github.com/LeonardoGuths"
target="_blank"
rel="noreferrer"
>github.com/leonardoguths</a
>
<a
href="https://www.linkedin.com/in/leonardoguths/"
target="_blank"
rel="noreferrer"
>linkedin.com/in/leonardoguths</a
>
</div>
</div>
<!-- Scripts -->
<script src="https://greggman.github.io/webgl-lint/webgl-lint.js"></script>
<script src="https://webgl2fundamentals.org/webgl/resources/twgl-full.min.js"></script>
<script src="https://webgl2fundamentals.org/webgl/resources/m4.js"></script>
<script src="https://webgl2fundamentals.org/webgl/resources/flattened-primitives.js"></script>
<script src="src/lib/dat.gui.min.js"></script>
<script src="src/js/interface.js"></script>
<script src="src/js/normal.js"></script>
<script src="src/js/objects.js"></script>
<script src="src/js/shaders.js"></script>
<script src="src/js/trs.js"></script>
<script src="src/js/utils.js"></script>
<script src="src/js/classes.js"></script>
<script src="src/js/script.js"></script>
</body>
</html>