-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Type Trainer</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="./keyboard.svg">
<script src="app.js"></script>
</head>
<body>
<header>
<h1>Type Trainer</h1>
</header>
<div class="container">
<div class="options-wrapper">
<div class="checkboxes">
<label style="margin-right: 15px;" class="options-text"><input type="checkbox" id="include-uppercase" checked> Capital Letters</label>
<label class="options-text"><input type="checkbox" id="include-punctuation" checked> Punctuation</label>
</div>
<div class="statistics">
<p class="options-text" id="wpm">0 WPM</p>
<p style="margin-left: 15px;" class="options-text" id="accuracy">Accuracy: 100%</p>
</div>
</div>
<div class="text-wrapper" onclick="toggleInputFocus()">
<div class="blur-overlay blur">
<p class="textbox-text"></p>
</div>
<p class="overlay-text">Click here to activate!</p>
</div>
<input class="text-input" type="text">
</div>
</body>
</html>