-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1">
<!-- <link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:700" rel="stylesheet"> -->
<link rel="stylesheet" type="text/css" href="https://use.typekit.net/cvg2jfp.css">
<title>Typing Test</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="logo">
<div>
<h1>TYPO.</h1>
</div>
<div>Try the Test!</div>
</div>
<div class="container">
<div class="timer">1:00</div>
<div class="para">
<div class="dispPara"></div>
<input class="inpPara" placeholder="Type Here" type="text">
</div>
<div class="resultDiv">
<div class="result">
<span><b>Result:</b></span>
<div class="wpm"></div>
<div class="errors"></div>
<div class="tests"></div>
<div class="avgWpm"></div>
</div>
<div class="reset">Reset</div>
</div>
</div>
</body>
<script src="app.js"></script>
</html>