-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
35 lines (33 loc) · 1.51 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
<!DOCTYPE html><!--HTML5 doctype-->
<html>
<head>
<title>Tetris - created by @ralphmeier</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name = "viewport" content = "user-scalable=no, width=device-width">
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<!-- <script src="lib/buzz/buzz.js"></script> -->
<!-- <script src="js/Tetris/Sound.js"></script> -->
</head>
<body>
<!-- <div id="info">
<canvas id="next_shape"></canvas>
<p id="level">Level: <span></span></p>
<p id="lines">Lines: <span></span></p>
<p id="score">Score: <span></span></p>
<p id="time">Time: <span></span></p>
</div>-->
<!-- <img id="gjs-loader" src="lib/gamejs/ajax-loader.gif"> -->
<canvas id="gjs-canvas"></canvas>
<!-- <script src="lib/gamejs/yabble.js"></script> -->
<!-- <script src="lib/gamejs/gamejs-wrapped.js"></script> -->
<link rel='stylesheet' href='style.css' media='all' />
<!-- <script> -->
<!-- // var buzzSound = new Sound() -->
<!-- // buzzSound.init() -->
<!-- // require.setModuleRoot('js/') -->
<!-- // require.run('main') -->
<!-- // </script> -->
<script src="bundle.js"></script>
<!-- <button id="musicOnButton" onclick="buzzSound.gameSound.play()">music on</button> -->
</body>
</html>