-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (35 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
45 lines (35 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reading Window</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<label for="story">Write or paste the story you want to read.</label>
<textarea id="story" name="story" rows="5" cols="33">
It was a dark and stormy night...
</textarea>
<div class="controls">
<div class="speedControl">
<label for="speedSlider">Speed</label>
<input id="speedSlider" type="range" min="150" max="350" step="100" value="250" list="speedMarks" />
<datalist id="speedMarks">
<option value="150" label="Slow"></option>
<option value="250" label="Med"></option>
<option value="350" label="High"></option>
</datalist>
<div class="speedLabels">
<span>Slow</span>
<span>Med</span>
<span>High</span>
</div>
</div>
<button id="readButton">Read</button>
</div>
</main>
<script src="script.js" defer></script>
</body>
</html>