-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 850 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (27 loc) · 850 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typing Speed Check</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!--Written By MD.Tanvir Ahamed Siddike-->
</head>
<body>
<div class="mainDiv">
<div class="centerDiv">
<h1>Welcome To Typing Speed Test</h1>
<h3 id="time"></h3>
<h3 id="msg"></h3>
<br>
<textarea id="mywords" placeholder="Start typing here..."></textarea>
<br>
<button id="btn" class="mainbtn">Start</button>
<br>
<p>Instructions : Click On Start button and type the words you see above the box and click on Done after you finished typing.</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>