-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.91 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.91 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
<!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>
<meta name="description" content="Online tool for solving the daily Apple News+ Quartiles game.">
</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" aria-label="Word list">
<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 the given solution doesn't solve the puzzle, check your spelling, or try another word list. If the puzzle is still not solved, or unused words are shown, please create a <a href="https://github.com/nilsstreedain/quartiles-solver/issues">GitHub Issue</a> so we can update the word lists.</p>
</main>
</div>
</body>
</html>