-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.43 KB
/
Copy pathindex.html
File metadata and controls
47 lines (46 loc) · 1.43 KB
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
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<!-- Start of Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-114289054-1">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-114289054-1');
</script>
<!-- End of Google Analytics -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Free and Easy Typing Test</title>
<link href="main.css" rel="stylesheet">
<script src="jquery-3.3.1.min.js">
</script>
<script src="words.js">
</script>
<script src="Chart.js">
</script>
<script src="script.js">
</script>
</head>
<body>
<div id="whole">
<div contenteditable="true" id="text-box"></div>
<div id="word-box" onmousedown="event.preventDefault ? event.preventDefault() : event.returnValue = false">
<h2 id="word-title">Word List</h2>
<p id="words"></p>
<hr />
<p id="time-cps" style="margin-top: 10px;">60.00</p>
</div>
<h3 id="title">Typing Test</h3>
</div>
<div class="popup" id="finish_popup">
<div class="popup-content">
<div class="popup-body">
<canvas id="chart" style='width: "10vw"; height: "10vh"'> If you are seeing this text, that is because Canvas is not supported in your browser.</canvas><button id="stats">In-Depth Stats</button> <button id="close">✖</button>
</div>
</div>
</div>
</body>
</html>