-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (52 loc) · 1.74 KB
/
index.html
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
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Alphabet Game</title>
<link href="/css/roonr.css" rel="stylesheet">
<link href="/css/comic.css" rel="stylesheet">
<link href="/style.css" rel="stylesheet">
<link href="static/style.css" rel="stylesheet">
</head>
<body class="noselect" style="padding:7px;">
<div class="comic-container blogs" style="margin-top:10px;margin-bottom:10px;">
<div class="comic" text="Alphabet Game">
Alphabet Game
</div>
</div>
<div id="app" class="center" style="visibility:hidden;">
<div id="intro">
<p style="margin-top:7px;">
<b>Goal of the game:</b> Unscramble the letters to make the desired word.
</p>
<p style="font-size:12px;margin-top:7px;margin-bottom:14px;">
<b>Hint:</b>This game was inspired by Emma.
</p>
</div>
<div id="snackbar" class="snackbar">Not the word.</div>
<div id="guess_board" class="guess_board">
</div>
<div id="choice_board" class="choice_board">
</div>
<div id="winnings" style="visibility:hidden;margin-top:40px;">
<div class="comic-container blogs" style="margin-top:10px;margin-bottom:10px;">
<div class="comic" text="Smarty Pants!">
Smarty Pants!
</div>
</div>
<p style="margin-top:10px;">
Look at the brains on you! Here is a picture of my dog, Patrick, as a reward.
</p>
<img style="margin-top:10px;width:100%" src="static/images/patrick_alphabet.jpg" alt="Patrick the doggo" />
</div>
</div>
<script type="module">
import init from './pkg/alphabet-game.js';
async function run () {
await init();
}
run();
</script>
</body>
</html>