-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.51 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
<!DOCTYPE html>
<head>
<title>PIA5LW: A word game</title>
<script src="index.js"></script>
<link href="normalize.css" rel="stylesheet" />
<link href="index.css" rel="stylesheet" />
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
</head>
<body>
<div id="display" class="centerBlock">
Data currently loading.
</div>
<div id="info" class="centerBlock">
<p>
Guess the word!
You get seven tries.
The words are root words,
meaning <em>no plurals</em> or conjugations.
</p>
<p>
<ul>
<li>
<span class="score2">Green</span> letter: Right letter, right place.
</li>
<li>
<span class="score1">Blue</span> letter: The letter appears somewhere else in the word.
</li>
<li>
<span class="score0">Grey</span> letter: The letter does not appear in the word.
</li>
<li>
<span class="score3">Grey word</span>: The word is not in the word list (e.g. plurals), so this doesn't count as a guess.
</li>
</ul>
</p>
<p>
The source word list is a modification of the common word list from the Moby project.
It contains many words that I, the author,
had not encountered before. Good luck.
</p>
</div>
</body>