-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (41 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<script src="app.js" defer></script>
<title>Text to Speech</title>
</head>
<body>
<section class="recognition">
<a
href="https://www.flaticon.com/free-icons/communication"
title="communication icons"
></a>
<header>The Voicinator 1.0</header>
<select name="voice" id="voices">
<option value="">Select a Voice</option>
</select>
<label for="rate">Rate</label>
<input type="range" name="rate" min="0" max="3" value="1" step="0.1" />
<label for="pitch">Pitch</label>
<input type="range" name="pitch" min="0" max="3" value="1" step="0.1" />
<textarea
name="text"
cols="30"
rows="10"
placeholder="Input text here"
></textarea>
<div class="btns">
<button id="stop">Stop!</button>
<button id="speak">Speak</button>
</div>
</section>
<footer>
<a href="https://github.com/sandramakis/Text-to-Speech">View Code</a>
<p>| <a href="https://twitter.com/SandraMakis">Sandra Makis</a> |</p>
<p>2023</p>
</footer>
</body>
</html>