-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal.html
More file actions
27 lines (22 loc) · 692 Bytes
/
local.html
File metadata and controls
27 lines (22 loc) · 692 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
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>Local Cheese Finder</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="styles.css">
</head>
<h1>🧀 Local Cheese Finder</h1>
<body>
<p>Take it in turns to play. Click the buttons to sniff for cheeses.
Clicked buttons show you how far away the cheese is.
Each button colour represents a particular distance.</p>
<p>Play to find the cheese, or to avoid it.</p>
<p>You get a different game every hour.</p>
<p id="counterPar"></p>
<p id="buttonPar"> </p>
<script type="module">
import { doPlayGame } from "./local.mjs";
doPlayGame();
</script>
</body>
</html>