-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.34 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
<!DOCTYPE HTML>
<html>
<head>
<title>KeyAno - Keyboard Piano</title>
<meta name="viewport" content="width=device-width, maximum-scale=1, user-scalable=no" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="stylesheet" type="text/css" href="/css/famous.css" />
<link rel="stylesheet" type="text/css" href="css/app.css" />
<script type="text/javascript" src="src/lib/underscore.js"></script>
<script type="text/javascript" src="src/lib/functionPrototypeBind.js"></script>
<script type="text/javascript" src="src/lib/classList.js"></script>
<script type="text/javascript" src="src/lib/requestAnimationFrame.js"></script>
<script type="text/javascript" src="src/lib/require.js"></script>
<script type="text/javascript" src="http://code.famo.us/famous/0.2/famous.min.js"></script>
<script type="text/javascript">
require.config({
baseUrl: './src/'
});
require(['app']);
</script>
</head>
<body>
<div class="app-background"></div>
<div class="logo-flag"><img src="/assets/img/flag.jpg" width="50px" height="50px"></div>
</body>
</html>