-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.47 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
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Speed reader</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="css.css?build=00000" />
</head>
<body data-skin=blackoncream>
<main>
<div id=setup>
<h1><span>Speed reader</span></h1>
<div id=noclick>
<textarea id=textarea placeholder="Write text..."></textarea>
<div>
<label for="wpm">Speed:</label>
<select id=wpm></select>
<span id=time class="gray"></span>
</div>
<div>
<label for="skin">Colors:</label>
<select id=skin>
<option value="blackonwhite">Black on white</option>
<option value="blackoncream" selected>Black on light</option>
<option value="whiteonblack">White on black</option>
<option value="yellowonblack">Yellow on black</option>
</select>
</div>
<div>
<button id="start">Start</button>
<button id="reset">Restart</button>
</div>
<div id=tutorial class="gray">
Click "space" to pause and start, <br/> "left" and "right" arrow buttons to go backwards and forwards,<br/> "up" and "down" arrow buttons to change speed.
</div>
</div>
</div>
<div id=output></div>
<div id=status></div>
</main>
</body>
<script type="text/javascript" src="script.js?build=00000"></script>
</html>