-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.12 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speedtyping</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
</head>
<body>
<div class="app">
<div class="topbar">
<h2 class="title">Typing test</h2>
<div class="stats">
<div class="stats-wrapper">
<div class="stats-wpm" id="stats-wpm">Speed: 100 wpm</div>
<div class="stats-time" id="stats-time">Time: 17s</div>
<div class="stats-accuracy" id="stats-accuracy">Accuracy: 100%</div>
</div>
</div>
</div>
<p class="text-display" id="text-display">
<span class="caret" id="caret"></span>
</p>
</div>
<script src="script.js"></script>
</body>
</html>