-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (42 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
53 lines (42 loc) · 1.59 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE HTML>
<html manifest="letterpaint.manifest" lang="en-US">
<head>
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
<title>letterpaint</title>
<link rel="stylesheet" type="text/css" href="letterpaint.css">
</head>
<body>
<div id="container" class="container">
<div id="chars" class="gamedata">ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz123456789</div>
<canvas></canvas>
<h1 class="toppanel">letterpaint</h1>
<div id="intro" class="cover">
<p>Paint over the letter you see on the screen. Can you write it without going outside of it?</p>
<button class="actionbutton">➜</button>
</div>
<button id="sound" class="navbutton">♬</button>
<button id="infos" class="navbutton">i</button>
<div id="win" class="cover check">
<p>Good job!</p>
<button class="actionbutton">➜</button>
</div>
<div id="error" class="cover">
<p>You painted outside the letter!</p>
<button class="actionbutton">➜</button>
</div>
<div id="info" class="cover infopanel">
<h1>letterpaint</h1>
<p>version 1.0</p>
<p>Written by Chris Heilmann</p>
<button id="install" class="inlinebutton">Install this</button>
</div>
<button class="actionbutton undo" id="reload">X</button>
</div>
<!-- http://freesound.org/people/NenadSimic/sounds/150879/ -->
<audio src="win.ogg" id="winsound"></audio>
<!-- http://freesound.org/people/Autistic%20Lucario/sounds/142608/ -->
<audio src="error.ogg" id="errorsound"></audio>
<script src="letterpaint.js"></script>
</body>
</html>