-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quartiles Solver</title>
<link rel="preload" href="resources/typeface.woff2" as="font" type="font/woff2" crossorigin>
<link rel="stylesheet" href="main.css">
<meta name="viewport" content="width=device-width">
<script type="application/javascript" src="assets/js/main.js" defer></script>
</head>
<body>
<nav>
<a class="page curr" href="/">Quartiles Solver</a>
<a class="page" href="https://github.com/nilsstreedain/quartiles-solver" target="_blank">GitHub</a>
</nav>
<div id="content">
<main>
<h1>Apple News+ Quartiles Solver</h1>
<p>Enter today's tiles to compute possible solutions, then click <b>Solve</b></p>
<div id="board">
<div id="inputs">
<select name="dict" id="dict">
<option value="enable">Enable - Scrabble (172,823 Words)</option>
<option value="rking">Roger King (191,625 Words)</option>
<option value="mbsingle">Moby Single (354,984 Words)</option>
<option value="allwords">All Words (776,522 Words)</option>
</select>
<button id="solve" onclick="solve()">Solve</button>
</div>
<div id="solutions"></div>
</div>
<p>Enter the solutions into Quartiles. If any words are missing, check your spelling, or try another word list. If a word is still missing, or an incorrect word is shown, please create a <a href="https://github.com/nilsstreedain/quartiles-solver/issues">GitHub Issue</a> so we can update the word list.</p>
</main>
</div>
</body>
</html>