-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 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
<!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">
<script src="script.js" defer></script>
<link rel="icon" type="image/x-icon" href="images\fevicon.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>mini reader</title>
</head>
<body>
<div class="wrapper">
<div class="logo">
<i class="fa-solid fa-microphone-lines"></i>
</div>
<form action="">
<textarea name="text" id="text" cols="10" rows="5" spellcheck="false" >Write your text here</textarea>
<div>
<div class="inputLabel">
<div class="inputname">rate</div>
<div id="rateText" class="inputValue">1</div>
</div>
<input type="range" name="rate" value= 1 id="rate" min="0.5" max="2" step="0.1">
</div>
<div>
<div class="inputLabel">
<div class="inputname">pitch</div>
<div id="pitchText" class="inputValue">1</div>
</div>
<input type="range" name="pitch" value = 1 id="pitch" min="0" max="2" step="0.1">
</div>
<select name="voiceSelect" id="voiceSelect">
</select>
<input type="button" value="pause" id="pause">
<input type="button" value="Play" id="play">
</form>
</div>
</body>
</html>