-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.5 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
<!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>TypingRand.io</title>
<link rel="stylesheet" href="CSS/style.css">
<script src="JS/paragraphs.js" defer></script>
<script src="JS/app.js" defer></script>
</head>
<body>
<div class="wrapper">
<input type="text" class="input-field" style="opacity: 0;">
<div class="content-box">
<div class="typing-text">
<p>
<!-- Text coming from JS -->
</p>
</div>
<div class="content">
<ul class="result-details">
<li class="time">
<p>Time Left:</p>
<span><b></b>s</span>
</li>
<li class="mistakes">
<p>Mistakes:</p>
<span><b>0</b></span>
</li>
<li class="wpm">
<p>WPM: </p>
<span><b>0</b></span>
</li>
<li class="cpm">
<p>CPM: </p>
<span><b>0</b></span>
</li>
</ul>
<button class="try-again disable">
Try Again
</button>
</div>
</div>
</div>
</body>
</html>