Files
PetPet/Games/2048/index.html
2024-08-28 01:42:35 +02:00

17 lines
491 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="icon.png" type="image/x-icon">
<script src="main.js"></script>
<title>2048</title>
</head>
<body>
<h1>Score: <span id="score">0</span></h1>
<div id="board"></div>
<button id="reset" onclick="reset()"></button>
<a href="../" id="home"></a>
</body>
</html>