-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (53 loc) · 1.76 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
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wordify</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Arvo&family=Playfair+Display&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<h1>Wordify</h1>
<div id="rules">
<button id="close">×</button>
<span>
Welcome to Wordify!
To play, transform the starting word into
a new word. You can only change, add, or
remove one letter at a time. The longer the
word you create, the more points you get.
You can not repeat words. Earn as many points
you can with twelve words!
<p>
spark ➡️ shark ✔️ <br>
spark ➡️ spar ✔️ <br>
spark ➡️ sparky ✔️ <br>
spark ➡️ spurn ✖️
</p>
</span>
</div>
<div class ="gamebox">
<div id="current-word">
</div>
<div id="invalid_words">
" "
</div>
<div id="submit_word">
<div class="letter">
</div>
</div>
<div id="words_remaining">
</div>
</div>
<div class ="gameinfo">
<div id="used_words">
</div>
<div id="score">
</div>
</div>
<script src="./script.js" type="module"></script>
</body>
</html>