-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (43 loc) · 1.38 KB
/
index.html
File metadata and controls
44 lines (43 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Typing Speed Test</title>
<link rel="stylesheet" href="css/style.css" />
<script type="module" src="js/app.js" defer></script>
<link
rel="shortcut icon"
href="img/icons8-user-typing-using-typewriter-80.png"
type="image/x-icon"
/>
</head>
<body>
<div class="modal">
<button class="close">X</button>
<h1>Great!</h1>
<p>Typing Test Completed!</p>
<h3>Words Typed: <span class="words-typed"></span></h3>
<h3>Your Speed: <span class="wpm"></span></h3>
<h3>Time Taken: <span class="time-taken"/p></h3>
</div>
<div class="wrapper">
<div class="wrapper__intro">
<h1>Typing Speed Test</h1>
<p>Type as fast as possible</p>
</div>
<p class="wrapper__text">This world shall know pain.</p>
<textarea name="inputText" id="inputText" cols="50" rows="10"></textarea>
<br />
<div class="wrapper__info">
<p class="wrapper__countdown">
<span>00:</span><span>00:</span><span>00</span>
</p>
<button class="wrapper__btn">
<img src="img/icons8-refresh-80.png" alt="refresh" />
</button>
</div>
</div>
</body>
</html>