-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 2.78 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
64
65
66
67
68
69
70
71
<head>
<title>Spiderweb: Find the center word</title>
<script src="index.js"></script>
<link href="index.css" rel="stylesheet" />
<link href="normalize.css" rel="stylesheet" />
</head>
<body>
<div id="board" class="centerBlock">
Data currently loading.
</div>
<div id="chainInfo" class="centerBlock">
</div>
<div id="info" class="centerBlock">
<hr>
<p>
Click the word at the center of the web!
You get one guess.
All the words in the grid are one step away from at least one other word,
but only the target word is within two steps of all the others.
Valid steps are:
</p>
<p>
<ul>
<li>
<p>Synonyms: The two words share a meaning.</p>
<p>
<span class="word">Frank</span> and <span class="word">Blunt</span>
both admit a variety of meanings,
but are directly linked because "to speak frankly" and "to speak bluntly" are synonymous.
</p>
</li>
<li>
<p>Hyper- and Hypo- nyms: One word is an example of another word.</p>
<p>
A <span class="word">Pug</span> is an example of a <span class="word">Dog</span>.
</p>
<p>
While a <span class="word">Pug</span> is therefore also an example of a <span
class="word">Canine</span>,
because a <span class="word">Dog</span> is an example of a <span class="word">Canine</span>,
going from <span class="word">Pug</span> to <span class="word">Canine</span> would have to go via <span class="word">Dog</span>.
</p>
</li>
</ul>
</p>
<p>
You get full marks for guessing the center word.
You get half marks if your guess was one step from the center.
You get no marks if your guess was two steps from the center.
</p>
<p>
This game uses Wordnet for the chains of meanings (citation below),
and these have not been verified by the author.
</p>
<p> Acknowledgements:
<ul>
<li>
Princeton University "About WordNet." <a href="https://wordnet.princeton.edu/">WordNet</a>. Princeton
University. 2010.
</li>
<li>
The Moby Project, available from <a href="https://www.gutenberg.org/ebooks/3201">Project Gutenberg</a>.
</li>
<li>
Normalize.css, available from <a href="https://necolas.github.io/normalize.css/">necolas.github.io</a>.
</li>
</ul>
</p>
</div>
</body>