You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
603 B

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2048</title>
<link rel="stylesheet" href="style_2048.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>2048</h1>
<div class="score-container">
Score: <span id="score">0</span>
</div>
<button id="new-game">Nouvelle partie</button>
</div>
<div class="grid"></div>
</div>
<script src="script_2048.js"></script>
</body>
</html>