-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (58 loc) · 1.97 KB
/
index.html
File metadata and controls
63 lines (58 loc) · 1.97 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
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" />
<title>Typing Speed Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
<script defer src="script.js"></script>
</head>
<body>
<main class="wrap">
<header class="topbar">
<h1>Typing Speed Test</h1>
<label class="toggle">
<input id="theme" type="checkbox" />
<span>Dark</span>
</label>
</header>
<section class="card">
<div class="row stats">
<div class="stat">
<span class="label">Time</span>
<span id="time" class="value">60s</span>
</div>
<div class="stat">
<span class="label">WPM</span>
<span id="wpm" class="value">0</span>
</div>
<div class="stat">
<span class="label">CPM</span>
<span id="cpm" class="value">0</span>
</div>
<div class="stat">
<span class="label">Mistakes</span>
<span id="mistakes" class="value">0</span>
</div>
<div class="stat">
<span class="label">Accuracy</span>
<span id="acc" class="value">100%</span>
</div>
</div>
<div class="progress">
<div id="bar" class="bar"></div>
</div>
<div class="text-area" id="textArea" aria-label="Typing text" tabindex="0">
<!-- paragraph & spans injected by JS -->
</div>
<div class="controls">
<input id="input" class="hidden-input" type="text" autocomplete="off" autocapitalize="off" spellcheck="false" />
<button id="restart" class="btn btn-accent">↻ Try Again</button>
<button id="newPara" class="btn">New Paragraph</button>
</div>
<p class="hint">Tip: just start typing. Press <kbd>Tab</kbd> or click to focus if needed.</p>
</section>
</main>
</body>
</html>