-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay.html
55 lines (48 loc) · 2.11 KB
/
play.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="icon" type="image/png" href="images/favicon.png">
<title>Spaghetti Dinner</title>
<meta name="description" content="Spaghetti Dinner: A GGJ2019 game">
<meta name="author" content="github.com/mapto; github.com/ElectronicElement">
<meta name="keywords" content="Home, Spaghetti, Monster, Labyrinth" />
<meta name="description" content="Spaghetti Dinner: A GGJ2019 game" /> <!-- limit of 156 characters, apparently because of Google -->
<!-- Open Graph -->
<meta property="og:title" content="spaghetti-dinner" /> <!-- duplicate of title -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://github.com/mapto/spaghetti-dinner" />
<!--<meta property="og:image" content="images/logo.png" />--> <!-- higher resolution than favicon -->
<meta property="og:description" content="Spaghetti Dinner: A GGJ2019 game" /> <!-- duplicate of meta description -->
<link rel="stylesheet" href="css/reset.css">
<link href="https://fonts.googleapis.com/css?family=Baloo+Thambi|Caveat|Caveat+Brush|Gloria+Hallelujah|Special+Elite" rel="stylesheet">
<script src="lib/p5.min.js" type="text/javascript"></script>
<script src="lib/p5.dom.min.js" type="text/javascript" language="javascript"></script>
<script src="lib/p5.sound.min.js" type="text/javascript"></script>
<script src="lib/p5.play.js" type="text/javascript"></script>
<script src="js/common.js" type="text/javascript"></script>
<script src="js/map.js" type="text/javascript"></script>
<script src="js/character.js" type="text/javascript"></script>
<!-- <script src="js/monster.js" type="text/javascript"></script> -->
<script src="js/control.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<style>
html {
height: 100%;
}
body {
margin: 0;
min-height: 100%;
}
canvas {
margin-left: auto;
margin-right: auto;
display: block;
touch-action: none;
}
</style>
</head>
<body>
</body>
</html>