-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.htm
65 lines (57 loc) · 1.47 KB
/
index.htm
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="initial-scale=1.0,user-scalable = no">
<title>Tetris by chilicoder</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="tetris-container" class="container">
<div id="stats" class="content">
</div>
<div class="sidebar">
<div id="tetris">
</div>
<div id="end-game">
<h1>Game over!</h1>
<a href="index.htm">play again</a>
</div>
</div>
<div id="buttons">
<ul>
<li>
<a href="#">
<div id="left"></div>
</a>
</li>
<li>
<a href="#">
<div id="drop"></div>
</a>
</li>
<li>
<a href="#">
<div id="rotate"></div>
</a>
</li>
<li>
<a href="#">
<div id="right"></div>
</a>
</li>
</ul>
</div>
</div>
<!-- <div >
<div id="tetris" </div>
</div>
<div id="stats" </div>
</div> -->
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://underscorejs.org/underscore-min.js"></script>
<script src="./quo.debug.js"></script>
<script src="./tetris.js"></script>
</body>
</html>