-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 885 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
<!DOCTYPE html>
<!--
* 2048 Game
* An html5 implementation of Gabriele Cirulli's 2048 game
* Programmed in 2016 by David Crespo
-->
<html>
<head>
<title>2048</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=640">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/libs/jquery/jquery-2.2.4.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<div id="gameframe">
<div id="gameover">Game Over</div>
</div>
<div class="infopanel">
<div id="scoreframe">
<div id="scorelabel">Score:</div>
<div id="scorevalue">0</div>
</div>
<div id="restart">> RESTART <</div>
</div>
</body>
</html>