-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" id='css'href="stin.css">
<title>PerfectType</title>
</head>
<body>
<div class="container">
<h1>Bluonkotype</h1>
<div class='stats'>
<p>Time:<span id="timer">0s</span></p>
<p>Mistakes:<span id="mistakes">0s</span></p>
</div>
<div id="words" onmousedown="return false" onselectstart="return false">
</div>
<textarea placeholder="Type here" id="wordinput" rows="3"></textarea>
<div id="btns">
<button id="start-test" onclick='startTest()'> Start Test</button>
<button id="stop-test" onclick='displayResults()'> Stop Test</button></div>
<div class="result">
<h3>Results:</h3>
<div class="wrapper">
<p>Accuracy: <span id="accuracy"></span></p>
<p>Speed: <span id="wpm"></span></p>
</div>
</div>
<div class="themecontainer">
<label for="themes">Theme:</label>
<select name="themes" id="themes">
<option value="sdark">Serika Dark</option>
<option value="stin">Sewing Tin</option>
</select>
</div>
</div>
<script src="index.js"></script>
</body>
</html>