-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
74 lines (70 loc) · 3.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<!--
spacewar-almost-from-scratch
This is an attempt of making the game spacewar using modern programming languages
Copyright (C) 2016 Luiz Eduardo Amaral - <luizamaral306@gmail.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html>
<head>
<title>SPACEWAR ALMOST FROM SCRATCH</title>
<meta name="description" content="This is an attempt of making the game spacewar using modern programming languages">
<link id="favicon" rel="icon" href="assets/favicon.ico" type="image/x-icon">
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
<script src="gameloop.js"></script>
<script src="draw.js"></script>
<script src="hershey.js"></script>
<script src="gameScreens.js"></script>
<script src="menuScreens.js"></script>
<!-- twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@ArmlessJohn404" />
<meta name="twitter:creator" content="@ArmlessJohn404" />
<meta name="twitter:title" content="SPACEWAR ALMOST FROM SCRATCH">
<meta name="twitter:description" content="This is an attempt of reproducing the game spacewar using modern programming languages.">
<meta name="twitter:image" content="https://github.com/luxedo/spacewar-almost-from-scratch/raw/master/assets/opengraph.png">
<!-- opengraph -->
<meta property="og:title" content="SPACEWAR ALMOST FROM SCRATCH" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://luxedo.github.io/spacewar-almost-from-scratch/" />
<meta property="og:image" content="https://github.com/luxedo/spacewar-almost-from-scratch/raw/master/assets/opengraph.png" />
<meta property="og:description" content="This is an attempt of reproducing the game spacewar using modern programming languages." />
</head>
<body onload="startGame()">
<div class="container">
<div id="game-frame">
</div>
<div class="footer">
<p>
<a href="https://github.com/luxedo/spacewar-almost-from-scratch">
<img src="assets/GitHub-Mark-Light-32px.png"></img>
<br>
<span>Check it on GitHub!</span>
</a>
</p>
<p>
Copyright (c) 2016 Luiz Eduardo Amaral -
<a href="mailto:luizamaral306@gmail.com?Subject=spacewar-almost-from-scratch">
<luizamaral306@gmail.com>
</a>
</p>
<p>
This software is under a
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GNU GPL3</a> license. Have fun!
<span style="font-size: 2em; vertical-align: top;">😉</span>
</p>
</div>
</div>
</body>
</html>