-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.3 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
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>2^11</title>
<link tyle="text/css" rel="stylesheet" href="2048.css" />
</head>
<body>
<div id="container">
<div id="header">
<h1>2^11</h1>
<p>A viral game popularly known as 2048</p>
</div>
<div id="body">
<p id="instruction">Just like the original, move the tiles by using the
arrow keys</p>
<div id="game"></div>
<script src="https://code.jquery.com/jquery-2.1.4.js" type="text/javascript"></script>
<script src="http://underscorejs.org/underscore.js" type="text/javascript"></script>
<script src="2048.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$('#game').game_2048()
})
</script>
</div>
<div id="footer">
<h2>Thank you for playing</h2>
<p>This is a clone of original
<a href="http://gabrielecirulli.github.io/2048/">2048</a> game by
<a href="http://gabrielecirulli.com/">Gabriele Cirulli</a> done for a job
application. Feel free to fork from
<a href="https://github.com/Jeffrey04/2048-clone">this repository</a>.</p>
</div>
</div>
</body>
</html>