-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 1008 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>2048</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="fontello.css">
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
<h1> 2048 </h1>
<div id="menu">
<span class='newGame' id='new'>Nouvelle partie</span>
<span class='newGame'>Score : <span id="score"></span> </span>
<span class='newGame'>Meilleur Score : <span id="bestScore"></span> </span>
<span class='newGame' id="taille">Taille <input id="gridSize" value="4" type='number' min="2" max="9"/><i class="icon-ok"></i></span>
<br/>
<span class='newGame' id='win'>Vous avez gagné !</span>
<span class='newGame' id='lost'>Partie terminée !</span>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script src="2048.js"></script>
</body>
</html>