-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow-to-play.html
45 lines (42 loc) · 2.01 KB
/
how-to-play.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="How to play the custom wordle">
<meta name="keywords" content="word, list, wordle">
<meta name="author" content="Author">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>How To Play</title>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<div class="heading">
<h1>How To Play</h1>
</div>
<div class="how-to-play">
<div style="display:inline-block; text-align: left">
<h2>How to play Custom Wordle</h2>
<ul>
<li>There is a randomly generated 5 letter word from the <a href="word-list.html">word list</a>. You must guess it.</li>
<li>You have 6 chances to guess it.</li>
<li>Entering a guess will give you hints. Use the hints to find the word.</li>
<li>A <span style="color:gray">gray</span> square means the letter is <strong>not</strong> in the word</li>
<li>A <span style="color:yellow">yellow</span> square means the letter is in the word, but <strong>not in the correct position</strong></li>
<li>A <span style="color:green">green</span> square means the letter is in the word, and <strong>in the correct position</strong></li>
<li>Only words from the word list can be chosen (Hence, Custom Wordle)</li>
<li>Note: After generating a new word, <strong>click somewhere else on the page</strong> to defocus the button</li>
<li>Good luck!</li>
</ul>
</div>
</div>
<div class="nav-btn-container">
<a href="index.html" target="_blank">
<input type="button" class="button" value="Return"></input>
</a>
<a href="word-list.html" target="_blank">
<input type="button" class="button" value="Word List"></input>
</a>
</div>
</body>
</html>