-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.07 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
<!DOCTYPE html>
<html>
<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">
<title>Typing test</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header class="masthead">
<h1>Test Your Typing Speed</h1>
</header>
<main class="main">
<article>
<p>This is a typing speed test web application</p>
<p>Type the text in box as exactly as below. </p>
</article>
<section class="test-area">
<div id="origin-text">
<p>This is the text which is needed to be typed in the box.</p>
</div>
<div class="test-wrapper">
<textarea name="textarea" id="test-area" cols="30" rows="6" placeholder="Type the above text to start. Try not to make any mistakes. ">
</textarea>
</div>
<div class="meta">
<section id="clock">
<div class="timer">00:00:00</div>
</section>
<button id="reset">Start Over</button>
</div>
</section>
</main>
</body>
<script type="text/javascript" src="script.js" async></script>
</html>