forked from Jsoto22/spellcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (59 loc) · 3.06 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!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 | Home</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.5.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">
<h2 class="boxed-black">How to Play</h2>
<table>
<tr>
<td style="font-size: 24pt; vertical-align: middle; text-align: center;"><span class="fa fa-circle-play" ></span></td>
<td>Press the audio button to hear the word and related information.</td>
</tr>
<tr>
<td style="font-size: 24pt; vertical-align: middle; text-align: center;"><span class="fa fa-repeat" ></span></td>
<td>Prompt playback will automatically loop.</td>
</tr>
<tr>
<td style="font-size: 24pt; vertical-align: middle; text-align: center;"><span class="fa fa-i-cursor" ></span></td>
<td>You can make an attempt at any point - even if it <span class="error">interruppts</span> the audio playback.</td>
</tr>
<tr>
<td style="font-size: 24pt; vertical-align: middle; text-align: center;"><span class="fa fa-shuffle" ></span></td>
<td>You can make an attempt in any order.</td>
</tr>
<tr>
<td style="font-size: 24pt; vertical-align: middle; text-align: center;"><span class="fa fa-dice" ></span></td>
<td>You can only submit one attempt.</td>
</tr>
</table>
<a href="mode_select.html">
<div class="btn boxed">
get <span class="error">startd</span> <i class="fa fa-arrow-right" style="font-size:10pt;"></i>
</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>
</body>
</html>