-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (63 loc) · 2.58 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
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Typing Test</title>
<meta content="Hydrovolter's Website | Typing Test" name=title>
<meta name="description" content="A sleek, simple, modern typing website with customizable themes" />
<link rel="stylesheet" href="style.css" />
<link id="theme" rel="stylesheet" href="themes/light.css" />
<link rel="icon" type="image/x-icon" href="/typingicon.png">
<meta content=/typingicon.png name=og:image>
</head>
<body>
<h2 id="header">Typing Test</h2>
<div id="command-center" class="">
<div class="bar">
<div id="left-wing">
<span id="word-count">
<span id="wc-10" onclick="setWordCount(10)">10</span>
<text> / </text>
<span id="wc-25" onclick="setWordCount(25)">25</span>
<text> / </text>
<span id="wc-50" onclick="setWordCount(50)">50</span>
<text> / </text>
<span id="wc-100" onclick="setWordCount(100)">100</span>
<text> / </text>
<span id="wc-250" onclick="setWordCount(250)">250</span>
</span>
<span id="time-count">
<span id="tc-15" onclick="setTimeCount(15)">15</span>
<text> / </text>
<span id="tc-30" onclick="setTimeCount(30)">30</span>
<text> / </text>
<span id="tc-60" onclick="setTimeCount(60)">60</span>
<text> / </text>
<span id="tc-120" onclick="setTimeCount(120)">120</span>
<text> / </text>
<span id="tc-240" onclick="setTimeCount(240)">240</span>
</span>
</div>
<div id="right-wing">WPM: XX / ACC: XX</div>
</div>
<div id="typing-area">
<div id="text-display"></div>
<div class="bar">
<input id="input-field" type="text" spellcheck="false" autocomplete="off" autocorrect="off" autocapitalize="off" tabindex="1"/>
<button id="redo-button" onclick="setText(event)" tabindex="2">redo</button>
</div>
</div>
</div>
<div id="theme-center" class="hidden">
<div id="left-wing" onClick="hideThemeCenter();">< back</div>
<div id="theme-area"></div>
</div>
<div id="footer">
<a href="./guide/" target="_blank" tabindex="3">User Guide</a>|
<div id="show-themes"class="button" onClick="showThemeCenter();" tabindex="4">Themes</div>
</div>
<script src="main.js"></script>
</body>
</html>