-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path2048.html
34 lines (30 loc) · 858 Bytes
/
2048.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
<!Doctype>
<html>
<head>
<title>2048</title>
<script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v5.0.1.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link rel="stylesheet" href="2048.css">
<script type="text/javascript" src="2048.js"></script>
</head>
<body>
<div class="fork-github">
<a href="https://github.com/JakeRuth/2048">
<img src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png" alt="Fork me on GitHub">
</a>
</div>
<div class="score">
<p class="score-title">Score</p>
<p class="score-number">0</p>
</div>
<div class="start-over">
<h1>Start Over</h1>
</div>
<div class="container">
<div id="page-title">
<span>Jake's 2048</span>
</div>
<div id="game"><div>
</div>
</body>
</html>