Files
PetPet/Games/2048/index.html

15 lines
358 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">
<script src="main.js"></script>
<title>2048</title>
</head>
<body>
<h1>2048</h1>
<h2>Score: <span id="score">0</span></h2>
<div id="board"></div>
</body>
</html>