-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha.html
56 lines (47 loc) · 1.45 KB
/
a.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Text-to-Speech </title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 >Text-to-Speech App</h1>
<div class="speechSection">
<div class="Voice-cnt">
<h2 >Select Voice</h2>
<select id="voices"></select>
<div class="container">
<textarea name="" id="text" cols="90" rows="10"></textarea>
</div>
<div class="container">
<div>
<p>Volume</p>
<input type="range" min="0" max="1" value="1" step="0.1" id="volume" />
<span id="label-v" class="">1</span>
</div>
<div>
<p class="lead">Rate</p>
<input type="range" min="0.1" max="10" value="1" id="rate" step="0.1" />
<span id="label-r" class="">1</span>
</div>
<div>
<p>Pitch</p>
<input type="range" min="0" max="2" value="1" step="0.1" id="pitch" />
<span id="label-p" class="">1</span>
</div>
</div>
</div>
<div class="controls">
<div class="container ctrl">
<button id="start">start</button>
<button id="cancel">cancel</button>
<button id="resume">resume</button>
<button id="pause">pause</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>