-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 991 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (24 loc) · 991 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Audio Math</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="mobile-web-app-capable" content="yes">
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<script src="jquery.min.js"></script>
<script src="AudioMath.js"></script>
<script src="soroban.js"></script>
<link rel="stylesheet" href="common.css">
<link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">
<link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css">
<script>
var GAME = new Engine("GAME");
$(document).ready(function() {
GAME.markupInit();
GAME.eventsInit();
});
</script>
</head>
<body></body>
</html>