-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypespeed.html
More file actions
42 lines (37 loc) · 1014 Bytes
/
typespeed.html
File metadata and controls
42 lines (37 loc) · 1014 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=
, initial-scale=1.0">
<title>Typing Speed</title>
<link rel="stylesheet" href="typespeed.css">
<link rel="stylesheet" href="<link href="https://fonts.googleapis.com/css2?family=Bungee&display=swap" rel="stylesheet">">
</head>
<body>
<div class="container">
<div >
<h1 class="title">
Typing Speed Calculator
</h1>
</div>
<div>
<ul>
<li id="msg">
</li>
</ul>
</div>
<div>
<textarea name="" id="textarea" cols="100" rows="20" placeholder="Start Typing" disabled></textarea>
</div>
<div class="btn">
<button id="btn" onclick="calculate(this)">Start</button>
</div>
<div class="footer">
<h1>@Created By Akash Sah</h1>
</div>
</div>
<script src="typespeed.js"></script>
</body>
</html>