-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.03 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
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Password Typing Practice Tool</title>
<link rel="icon" type="image/png" href="ptpt-favicon.png">
<meta name="color-scheme" content="dark">
<link rel="stylesheet" href="ptpt.css">
<script src="ptpt.js"></script>
</head>
<body onload="init(); addInput()" onkeydown="keyDown(event)" onkeyup="keyUp(event)">
<table></table>
<div class="counter">
<span id="counter-correct">0</span>
<span id="counter-slash">/</span>
<span id="counter-total">0</span>
</div>
<div class="title">
<div class="logo">
<span class="P">P</span>
<span class="T">T</span>
<span class="P">P</span>
<span class="T">T</span>
</div>
<div class="subtitle">password typing practice tool</div>
</div>
<div class="download">
<p class="version">commit <b>24</b></p>
<a href="https://github.com/benelaci/PTPT" target="_blank">
<img src="github.png">
<div>
<div class="en">github page</div>
</div>
</a>
</div>
</body>
</html>