-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 728 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Test your typing speed</title>
</head>
<body>
<div class="maindiv">
<div class="centerdiv">
<h1>welcome to typing speed test</h1> <br>
<h2 id="msg" oncopy="return false"></h2> <br>
<textarea id="mywords" cols="100" rows="10" placeholder="Happy typing!!!"
onpaste="return false"></textarea> <br> <br>
<button id="btn" class="mainbtn">Start</button>
</div>
<script src="typing.js"></script>
</div>
</body>
</html>