-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 2.43 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 2.43 KB
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
<!DOCTYPE html>
<!--
Spacewar-Javascript
This is a modern JS reboot of the 1962 classic PDP-1 Spacewar
Copyright (C) 2021 Ron Perkins - <hello@ronperkins.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 - Cosmicsoft Games</title>
<meta name="description" content="This is a modern recreation of the classic 1962 MIT Spacewar game">
<link id="favicon" rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles.css">
<script src="js/script.js"></script>
<script src="js/gameloop.js"></script>
<script src="js/draw.js"></script>
<script src="js/hershey.js"></script>
<script src="js/gameScreens.js"></script>
<script src="js/menuScreens.js"></script>
<!-- twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@ronperkins" />
<meta name="twitter:creator" content="@ronperkins" />
<meta name="twitter:title" content="Spacewar - Cosmicsoft Games">
<meta name="twitter:description" content="This is a modern recreation of the classic 1962 MIT Spacewar game.">
<meta name="twitter:image" content="https://github.com/ronperkinsuk/Spacewar/raw/main/assets/images/spacewar.jpg">
<!-- opengraph -->
<meta property="og:title" content="Spacewar - Cosmicsoft Games" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://github.com/ronperkinsuk/Spacewar/raw/main/assets/images/spacewar.jpg">
<meta property="og:image:width" content="625" />
<meta property="og:image:height" content="625" />
<meta property="og:description" content="This is a modern recreation of the classic 1962 MIT Spacewar game." />
</head>
<body onload="startGame()">
<div class="container">
<div id="game-frame">
</div>
</div>
</body>
</html>