-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (40 loc) · 1.26 KB
/
index.html
File metadata and controls
49 lines (40 loc) · 1.26 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
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Speech Synthesis</title>
<link href="../index.css" rel="stylesheet">
<link href="index.css" rel="stylesheet">
</head>
<body class="container">
<div class="main">
<h1 class="main__title">
<a href="../index.html" class="main__back-btn">←</a>
Speech Synthesis
</h1>
<p class="main__description">
Welcome to The Voiceinator 5000
</p>
<div class="voiceinator">
<h1>The Voiceinator 5000</h1>
<select name="voice" id="voices">
<option value="">Select A Voice</option>
</select>
<label for="rate">Rate:</label>
<input name="rate" type="range" min="0" max="3" value="1" step="0.1">
<label for="pitch">Pitch:</label>
<input name="pitch" type="range" min="0" max="2" step="0.1">
<textarea name="text">Hello! I love JavaScript 👍</textarea>
<button id="stop">Stop!</button>
<button id="speak">Speak</button>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<span>Check out Sacret's <a href="https://github.com/Sacret">GitHub</a>
and <a href="https://twitter.com/Sacret19">Twitter</a></span>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>