-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhard.html
More file actions
51 lines (45 loc) · 1.95 KB
/
hard.html
File metadata and controls
51 lines (45 loc) · 1.95 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
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CS3G16HP6X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CS3G16HP6X');
</script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wordle Solver For Hard Mode</title>
<script src="./shared.js"></script>
<script src="./hard.js" defer></script>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="loader-container loader-container-hidden">
<div class="spinner"></div>
</div>
<div id="info-placeholder" data-content="To use this solver type in the word you put in to wordle. Then click on the squares to toggle their color until they match what you got in wordle. Then press enter to calculate the next best words." data-extra='<p><strong>Important</strong> - This solver can take up to 2 minutes to compute the suggestion list. In that time you may see a pop up saying the page is unresponsive <strong>Do Not</strong> close the page, press Wait instead.</p>'></div>
<div id="container">
<div id="game">
<div id="header-placeholder"
data-title="Wordle Solver For Hard Mode"
data-left='<i class="icon icon-question" id="info-button" onclick="toggleInfo()">?</i>'
data-right='<a class="icon icon-refresh" href="./hard.html">↻</a><a class="icon icon-menu" href="./menu.html">≡</a>'>
</div>
<div id="board-placeholder"></div>
<div id="keyboard-placeholder"></div>
</div>
<div id="suggestions">
<header><h2>Suggestions</h2></header>
<ol id="suggestion-list"></ol>
<div></div>
</div>
</div>
</body>
</html>