-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 1023 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text_to_Speech Converter</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="hero">
<h1>Text to Speech <span>Converter</span></h1>
<Textarea placeholder="Type or paste your text here ..."></Textarea>
<div class="row">
<select name="select" id="select"></select>
<div class="settings">
<label for="rate">Rate:</label>
<input type="range" id="rate" min="0.5" max="2" step="0.1" value="1">
<label for="pitch">Pitch:</label>
<input type="range" id="pitch" min="0.5" max="2" step="0.1" value="1">
</div>
<button> <img src="play.png" alt="" class="play-icon"><img src="pause.PNG" alt="" class="pause-icon"> Listen</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>