-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.77 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 1.77 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
52
53
54
<!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</title>
<script src="./shared.js"></script>
<script src="./main.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."></div>
<div id="container">
<div id="game">
<div id="header-placeholder"
data-title="Wordle Solver"
data-left='<i class="icon icon-question" id="info-button" onclick="toggleInfo()">?</i>'
data-right='<a class="icon icon-refresh" href="./">↻</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>
<button class="btn" onclick="toggleHard()">toggle hard mode</button>
</header>
<ol id="suggestion-list"></ol>
<div></div>
</div>
</div>
</body>
</html>