-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·45 lines (41 loc) · 1.6 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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<!-- Required to fire purchase events on iOS. -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self' https: http://localhost:3000 https://*.iaptic.com 'unsafe-eval' 'unsafe-inline' gap://* app:
*; style-src 'self' 'unsafe-inline'; media-src *; img-src * 'self' data: blob:">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>FlyingPlane</title>
<meta name="description" content="Tap Plane Game">
<meta name="viewport"
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width viewport-fit=cover">
<link rel="stylesheet" href="">
<style>
#content-game {
width: 100%;
height: 100%;
float: left;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="content-game">
<!-- <img src="assets/images/background.png" /> -->
</div>
<script src="" defer></script>
<div id="content"></div>
<script src="cordova.js"></script>
</body>
</html>