-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaze.html
24 lines (24 loc) · 1.04 KB
/
maze.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="google" value="notranslate">
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1.0, user-scalable=no">
<title>Blockly : Maze</title>
<link rel="stylesheet" type="text/css" href="http://blockly-demo.appspot.com/static/apps/common.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="http://blockly-demo.appspot.com/static/apps/_soy/soyutils.js"></script>
<script type="text/javascript" src="http://blockly-demo.appspot.com/static/apps/common.js"></script>
<script type="text/javascript" src="javascripts/maze.js"></script>
<script type="text/javascript" src="http://blockly-demo.appspot.com/storage.js"></script>
</head>
<body>
<script type="text/javascript">
document.write(mazepage.start({}, null,
{lang: BlocklyApps.LANG,
level: Maze.LEVEL,
skin: Maze.SKIN_ID,
langSrc: BlocklyApps.LANGUAGES[BlocklyApps.LANG][2]}));
</script>
</body>
</html>