-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 999 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="website icon" type="png" href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTUxaVvUEqWy1W_Qf5I6IMDJrSU-LomRAZgrA&s">
<title>Text To Speech Converter</title>
</head>
<body>
<!-- Works best in Chrome! -->
<div class="voiceinator">
<h1>Text-To-Speech Converter</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 id="type" name="text" placeholder="Start typing..."></textarea>
<button id="stop">Stop</button>
<button id="speak">Speak</button>
</div>
<script src="script.js"></script>
</body>
</html>