-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
62 lines (61 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="stylesheet.css" />
<title>Type To Speak</title>
<script defer src="index.js"></script>
</head>
<body>
<div class="container">
<div class="title-box center">Type To Speak</div>
<form id="form">
<div class="form-group">
<textarea
class="textarea-cont margin-radius"
id="text-input"
cols="30"
rows="5"
placeholder="Type anything..."
></textarea>
<div class="container less-width">
<label for="rate" class="text-size center label-pos margin-radius"
>Rate</label
>
<div id="rate-value" class="float-right">1</div>
<input
type="range"
class="input-range margin-radius"
id="rate"
min="0"
max="2"
value="1"
step="0.1"
/>
<label for="pitch" class="text-size center label-pos margin-radius"
>Pitch</label
>
<div class="float-right" id="pitch-value">1</div>
<input
type="range"
class="input-range margin-radius"
id="pitch"
min="0"
max="2"
value="1"
step="0.1"
/>
</div>
<label class="text-size speaker-select-label"
>Choose the speaker:</label
>
<select id="voice-select" class="form-control margin-radius"></select>
</div>
<button class="btn margin-radius">Speak</button>
</form>
</div>
</body>
</html>