-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (38 loc) · 1.09 KB
/
index.html
File metadata and controls
45 lines (38 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style.css">
<title>Speed Typing</title>
</head>
<body>
<div class="container">
<header>
<h1>Speed Typing</h1>
</header>
<div class="time">
<h3>Time : <p id ="counter">1:00</p></h3>
</div>
<div class="resultBox" id="resultBox">
<div class="resDetails" id="resDetails">
<div class="speed">
<p class= "digit" id="wpm">0</p>
<p class="desc">WPM</p>
</div>
<div class="accuracy">
<p class= "digit" id="accuracy">0</p>
<p class="desc"> %Accuracy</p>
</div>
</div>
<p id = "text"></p>
</div>
<div class="textarea">
<textarea id="input" cols="40" rows="6" placeholder="Start Typing... "></textarea><br>
<button id="submitbtn" class="submitbtn">Start</button>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>