-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (60 loc) · 2.11 KB
/
index.html
File metadata and controls
64 lines (60 loc) · 2.11 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
64
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CCRC Typing Test</title>
</head>
<body>
<div id="app">
<div class="settings">
<div class="setting settings__variance">
<h2 class="setting__title">Variance</h2>
<div class="setting__options">
<label>
<input type="radio" name="variance" value="500" />500
</label>
<label>
<input type="radio" name="variance" value="1000" checked />1K
</label>
<label>
<input type="radio" name="variance" value="5000" />5K
</label>
<label>
<input type="radio" name="variance" value="10000" />10K
</label>
</div>
</div>
<div class="setting settings__time">
<h2 class="setting__title">Time</h2>
<div class="setting__options">
<label><input type="radio" name="time" value="15" />15s</label>
<label>
<input type="radio" name="time" value="30" checked /> 30s
</label>
<label><input type="radio" name="time" value="60" />1m</label>
<label><input type="radio" name="time" value="120" />2m</label>
</div>
</div>
</div>
<div class="input-area">
<div class="input-area__display" id="display-box">Palceholder</div>
<input class="input-area__input" id="input-box" type="text" />
</div>
</div>
<div id="result">
<p class="result__item">
Correct Words: <span id="correct-wordcount">0</span>
</p>
<p class="result__item">
Incorrect Words: <span id="incorrect-wordcount">0</span>
</p>
<p class="result__item">
Words per Minute: <span id="words-permin">0</span>
</p>
<input class="result__retry" id="retry" type="button" value="Try Again" />
</div>
<script type="module" src="/src/main.js"></script>
<link rel="stylesheet" type="text/css" href="/src/style.css" />
</body>
</html>