-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
42 lines (40 loc) · 1.27 KB
/
help.html
File metadata and controls
42 lines (40 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Game Help</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="helpModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>How to Play</h2>
<p>Welcome to Worderly! The goal is to guess the hidden word.</p>
<p>
When you guess a word, you receive feedback on each letter. It's like
Wordle, but with a twist -- the clues relate to where each letter in
the answer falls alphabetically in relation to your guess.
</p>
<ul>
<li>
<span class="correct">A</span>: Correct letter in the correct
position.
</li>
<li>
<span class="aft">B</span>: The correct letter for this position
comes after your guess in the alphabet.
</li>
<li>
<span class="bef">Z</span>: The correct letter for this position
comes before your guess in the alphabet.
</li>
</ul>
<p>
Use this feedback to narrow down the possibilities and guess the word!
</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>