-
Notifications
You must be signed in to change notification settings - Fork 39
/
results.html
54 lines (53 loc) · 2.24 KB
/
results.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1.0, user-scalable=0">
<title>Spellcheck - A Word Game | Results</title>
<link rel="stylesheet" href="assets/styles/large_style.css" media="(min-width: 800px)">
<link rel="stylesheet" href="assets/styles/mobile_style.css" media="(max-width: 800px)">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
<link rel="icon" type="image/x-icon" href="assets/icons/spellcheck.png">
</head>
<body>
<div class="header">
<div id="header-with-menu">
<h1 class="boxed" id="header-title"><span class="">Spellcheck</span></h1>
</div>
</div>
<div class="content">
<h3 class="boxed-black error">Rezults</h3>
<h1 id="results"></h1>
<a href="">
<div class="btn boxed" id="copy-btn">
<i class="fa fa-copy" style="font-size:10pt;"></i> <span class="error">coppee</span> results to clipboard
</div>
</a>
<br>
<a href="mode_select.html">
<div class="btn boxed">
play <span class="error">agen</span> <i class="fa fa-arrow-right" style="font-size:10pt;"></i>
</div>
</a>
<h3 class="boxed-black">Your Typos</h3>
<table id="typos"></table>
<br>
<a href="mailto:[email protected]?subject=Spellcheck Bug Report" target="_blank" >
<div class="btn boxed">
<i class="fa fa-bug" style="font-size:10pt;"></i> report a bug
</div>
</a>
</div>
<br>
<div class="footer">
<div><p>an answer in progress <span class="error">prject</span></p></div>
<div id="social-icons-flexbox">
<a href="https://www.youtube.com/answerinprogress" target="_blank" class="social-icon"><i class="fa-brands fa-youtube"></i></a>
<a href="https://www.instagram.com/answerinprogress" target="_blank" class="social-icon"><i class="fa-brands fa-instagram"></i></a>
<a href="https://www.patreon.com/answerinprogress" target="_blank" class="social-icon"><i class="fa-brands fa-patreon"></i></a>
<a href="https://answerinprogress.substack.com/" target="_black" class="social-icon"><i class="fa-regular fa-envelope"></i></a>
</div>
</div>
<script src="assets/scripts/results.js"></script>
</body>
</html>