-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 824 Bytes
/
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
36
37
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/first.css">
<title>2048</title>
</head>
<body>
<div id="mdiv">
<div class="cell"> </div>
<div class="cell"> </div>
<div class="cell "> </div>
<div class="cell cell2">2</div>
<div class="cell"> </div>
<div class="cell"> </div>
<div class="cell cell2">2</div>
<div class="cell cell2">2</div>
<div class="cell"> </div>
<div class="cell"> </div>
<div class="cell cell2">2</div>
<div class="cell cell2">2</div>
<div class="cell"> </div>
<div class="cell"> </div>
<div class="cell cell2">2</div>
<div class="cell"> </div>
</div>
<script type="text/javascript" src="js/2048.js">
//window.addEventListener("load",slowtext.setup());
</script>
<script type="text/javascript">
game.init();
</script>
</body>
</html>