This repository has been archived by the owner on Sep 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (54 loc) · 1.91 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SpeedReader</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div id="wrapper">
<h2>SpeedReader</h2>
<div id="speedScreen"></div>
<div class="controlArea">
<p>Play Controls:</p>
<button id="start">Start</button>
<button id="stop">Stop</button>
</div>
<div class="controlArea">
<p>Speed:</p>
<select id="speed">
<option value="300">200 wpm</option>
<option value="200">300 wpm</option>
<option value="171" selected="selected">350 wpm</option>
<option value="150">400 wpm</option>
<option value="133">450 wpm</option>
<option value="120">500 wpm</option>
</select>
</div>
<div class="controlArea">
<p>Size:</p>
<label>
<input name="size" type="radio" value="36pt" checked="checked">Medium</label>
<label>
<input name="size" type="radio" value="48pt">Big</label>
<label>
<input name="size" type="radio" value="60pt">Bigger</label>
</div>
<div>
<div class="controlArea">
<p>Input Text</p>
<textarea rows="15" cols="150" id="mytextarea"></textarea>
</div>
</div>
</div>
<div id="validators">
<a href="https://webster.cs.washington.edu/validate-html.php">
<img src="https://webster.cs.washington.edu/images/w3c-html-blue.png" alt="Valid HTML" /></a>
<a href="https://webster.cs.washington.edu/validate-css.php">
<img src="https://webster.cs.washington.edu/images/w3c-css-blue.png" alt="Valid CSS" /></a>
<a href="https://webster.cs.washington.edu/jslint/?referer">
<img src="https://webster.cs.washington.edu/images/w3c-js-blue.png" alt="Valid JS" /></a>
</div>
</body>
</html>