-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Word Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="controls">
<button id="play-random-seed-button">Play Random Seed</button>
<button id="play-date-seed-button">Play Date Seed</button>
<input type="text" id="seed-input" placeholder="Enter seed">
<button id="set-seed-button">Set Seed</button>
</div>
<div id="game-board" class="hidden">
<div id="draft-letters"></div>
<div id="guess-letters"></div>
<input type="text" id="guess-input" placeholder="Enter your word">
<button id="submit-word-button" class="hidden">Submit Word</button>
<button id="finish-button" class="hidden">Finish Game</button>
</div>
<div id="result"></div>
<div id="announcement" class="announcement"></div>
<div id="missed-words" class="missed-words"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/seedrandom/3.0.5/seedrandom.min.js"></script>
<script src="script.js"></script>
<div id="leaderboard">
<h2>Leaderboard</h2>
<ol id="leaderboard-list"></ol>
</div>
</div>
</body>
</html>