-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path23.html
66 lines (62 loc) · 2.09 KB
/
23.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
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Speech Synthesis (Day-23)</title>
<link rel="stylesheet" href="../assets/css/23.css" />
<script src="../assets/js/23.js"></script>
</head>
<body>
<div class="navbar">
<div class="info">
<div class="info-sign">
<div class="symbol">i</div>
</div>
<span class="description">
<b> <i>Tip</i> </b> : Personal Assistant !
</span>
</div>
<div class="source">
<a
class="info"
target="_blank"
aria-hidden="true"
title="View on Github"
href="https://github.com/karna98/JavaScript30/#day-23-"
>
<div class="info-sign">
<div class="symbol">
<img src="../assets/images/github.svg" />
</div>
</div>
</a>
</div>
</div>
<div class="voiceinator">
<div class="title">The Voiceinator 5000</div>
<select name="voice" id="voices">
<option value="">Select A Voice</option>
</select>
<div class="control-rate">
<label for="rate">Rate:</label>
<input
name="rate"
type="range"
min="0"
max="3"
value="1"
step="0.1"
/>
</div>
<div class="control-pitch">
<label for="pitch">Pitch:</label>
<input name="pitch" type="range" min="0" max="2" step="0.1" />
</div>
<textarea name="text">Hello! I love JavaScript 👍</textarea>
<div class="buttons">
<button id="speak">Speak</button>
<button id="stop">Stop!</button>
</div>
</div>
</body>
</html>