forked from ellisonleao/clumsy-bird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.95 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Clumsy Bird</title>
<link rel="apple-touch-icon-precomposed" href="data/img/touch-icon-iphone.png"/>
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="data/img/touch-icon-iphone-retina.png"/>
<link rel="shortcut icon" href="data/img/favicon.ico">
<link rel="stylesheet" type="text/css" media="screen" href="index.css">
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Clumsy Bird">
<meta charset="UTF-8" />
<meta name="description" content="Clumsy Bird"/>
<meta name="keywords" content="flappybird, flappy, bird, game, html5, melonjs,clone"/>
<meta name="robots" content="index, follow">
<meta property="og:title" content="Clumsy Bird"/>
<!-- Twitter Card -->
<meta name="twitter:hashtag" content="clumsybird" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@ellisonleao" />
<meta name="twitter:creator" content="@ellisonleao" />
<meta name="twitter:title" content="Clumsy Bird" />
<meta name="twitter:description" content="A Flappy Bird melonJS clone" />
<!-- Humans -->
<link rel="author" href="humans.txt" />
</head>
<body>
<!-- Canvas placeholder -->
<div id="screen"></div>
<!-- melonJS Library -->
<script type="text/javascript" src="js/melonJS-min.js" ></script>
<script type="text/javascript" src="build/clumsy-min.js" ></script>
<script type="text/javascript">
window.onReady(function onReady() {
game.onload();
});
</script>
</body>
</html>