-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 723 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (21 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cakes</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body onkeyup="handleKey(event)" onload="initGame()">
<h1>"Let me eat cakes"</h1>
<span class="collect-count"> Collect count: </span>
<span class="restart cursor-pointer" onclick="startGame()"> start </span>
<table>
<tbody class="board"></tbody>
</table>
<div class="end-screen hidden"> Victory!</div>
<script src="js/app.js"></script>
<script src="js/util.js"></script>
</body>
</html>