-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typing Test Online</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./assets/TypingTestLogo.png" type="image/x-icon">
</head>
<body>
<div class="main">
<nav>
<h2>TypingTest</h2>
</nav>
<div id="typingtest-container">
<h2 id="random-text-container">
</h2>
<div id="user-status-container">
<h2 id="user-word-input">
</h2>
<div id="user-controls">
<h2 id="user-wpm">
</h2>
<h2 id="user-time">
0:00
</h2>
<h2 id="user-test-toggle-btn">
Start
</h2>
</div>
</div>
<h2 id="start-instruction">Press any key to Start</h2>
<h2 id="key-press-caption">
</h2>
</div>
<div id="typingtest-result">
<h2>Your WPM : <span id="wpm-result"></span></h2>
<h2>Your Accuracy : <span id="accuracy-result"></span></h2>
</div>
</div>
<div class="desktop-only-message">
<h2>Desktop Version Only</h2>
<p>We're sorry, but this website is designed to be viewed on desktop devices only. Please visit us using a desktop computer for the best experience.</p>
</div>
<script src="data.js"></script>
<script src="script.js"></script>
</body>
</html>